/* Define the font faces */
@font-face {
  font-family: "JUST Sans";
  src: url("../Assets/Fonts/just_sans/Web Fonts/JUST Sans Regular.woff2")
      format("woff2"),
    url("../Assets/Fonts/just_sans/Web Fonts/JUST Sans Regular.woff")
      format("woff");
  font-weight: 400;
  font-style: normal;
}

/* Example for Bold (if you have it) */
@font-face {
  font-family: "JUST Sans";
  src: url("../Assets/Fonts/just_sans/Web Fonts/JUST Sans Bold.woff")
    format("woff");
  font-weight: 700;
  /* 700 */
  font-style: normal;
}

@font-face {
  font-family: "JUST Sans";
  src: url("../Assets/Fonts/just_sans/Web Fonts/JUST Sans Medium.woff")
    format("woff");
  font-weight: 500;
  /* 700 */
  font-style: normal;
}

@font-face {
  font-family: "JUST Sans";
  src: url("../Assets/Fonts/just_sans/Web Fonts/JUST Sans ExBold.woff")
    format("woff");
  font-weight: 900;
  /* 700 */
  font-style: normal;
}

/* Example for Italic (if you have it) */
@font-face {
  font-family: "JUST Sans";
  src: url("../Assets/Fonts/just_sans/Web Fonts/JUST Sans Italic.woff")
    format("woff");
  font-weight: normal;
  /* 400 */
  font-style: italic;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-Thin.ttf")
    format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-ExtraLight.ttf")
    format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-Light.ttf")
    format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-Regular.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-Medium.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-SemiBold.ttf")
    format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-Bold.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-ExtraBold.ttf")
    format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-Black.ttf")
    format("truetype");
  font-weight: 900;
  font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    overflow-x: hidden;
}

:root {
  --color-white: #FFFFFF;
  --color-white-25: #FAFAFA;
  --color-white-50: #F2F2F2;
  --color-white-100: #E6E6E6;
  --color-white-200: #CCCCCC;

  --color-black: #000000;
  --color-black-50: #0D0D0D;
  --color-black-100: #1C1C1C;
  --color-black-200: #333333;
  --color-black-250: #BFBFBF;
  --color-black-400: #666666;
  --color-black-500: #808080;

  --color-yellow: #FFD332;
  --color-blue-500: #0080FF;
  --color-Orange-500: #FF6000;
  --color-red: #D92D3A;
  --color-green-700: #015845;
}

/* =====================================================
   HEADER STYLES
   ===================================================== */
.logo img {
    height: auto;
    width: auto;
    max-height: 32px; 
}

/* Header Styles */
.header-wrapper {
  width: 100%;
  z-index: 999;
  position: relative;
  
  top: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  transition: all 0.3s ease;
}

/* Navigation */
.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 100px;
  background: transparent;
  z-index: 9999;
  position: relative;
  height: 68px;
  transition: all 0.3s ease;
  max-width: 1920px;
  margin: auto;
}

/* When scrolled → becomes fixed */
.header-wrapper.scrolled {
  position: fixed;
  background: var(--color-white);
  border-bottom: 1px solid #c1c4c8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Push hero content below header */
/* .hero-section {
  padding-top: 90px;   
} */

/* Add a scroll class for when the user scrolls
.header-wrapper.scrolled {
  border-bottom: 1px solid var(--Neutral-colors-Default-Borders, #c1c4c8);
  background: var(--Neutral-colors-White, #fff);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
} */

.header-wrapper.scrolled .nav-item {
  color: var(--color-black);
}

.header-wrapper.scrolled .cta-button {
  background: var(--color-green-700);
}

.header-wrapper.scrolled .cta-text {
  color: var(--color-white);
}

.header-wrapper.scrolled .menu-toggle span {
  background-color: #121212;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  white-space: nowrap;
  display: inline-block;
  cursor: pointer !important;
}

.logo img {
  height: auto;
  width: auto;
  max-height: 32px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.nav-item-wrapper {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.dropdown-arrow {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  vertical-align: middle;
}

.services-arrow, .products-arrow {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  vertical-align: middle;
  transition: filter 0.3s ease;
  filter: brightness(0); 
}

.header-wrapper.scrolled .services-arrow, .header-wrapper.scrolled .products-arrow {
  filter: brightness(0);
}

.nav-links img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.dropdown-arrow{
    width:16px;
    height:auto;
    margin-left:6px;
    cursor:pointer;
    background:transparent;
    border:none;
    display:block;
}

.dropdown{
    position: relative;
}

.services-menu h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 160%;
    text-transform: uppercase;
    color: var(--color-black-500);
}

.services-menu h2{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 2;
    color: var(--color-black-100);
}

/* Services Dropdown */
.services-dropdown{
  position:relative;
}

.services-menu{
  position:absolute;
  top:35px;
  left:0;
  width:382px;
  height: 134px;
  background: var(--color-white);
  border-radius:8px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  display:none;
  flex-direction:column;
  padding:20px 30px;
}

.services-menu.show{
  display:flex;
}

/* Products Dropdown */
.products-dropdown{
  position:relative;
}

.products-menu{
  position:absolute;
  top:35px;
  left:0;
  width:500px;
  height: 200px;
  padding: 20px 30px;
  background: var(--color-white);
  border-radius:8px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  display:none;
}

.products-menu.show{
  display:flex;
}

.menu-column {
    padding-right: 50px;
}

.menu-column a{
    font-family: 'Inter', sans-serif;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--color-black-100);
    font-size: 18px;
    line-height: 2.3;
}

.menu-column1 a{
    font-family: 'Inter', sans-serif;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--color-black-100);
    font-size: 18px;
    line-height: 2.3;
}

.dropdown-menu a:hover{
    background:#f5f5f5;
}

.dropdown-menu.show{
    display:flex;
}

/* Menu Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  outline: none;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-black);
  margin: 5px 0;
  border-radius: 3px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out,
    background-color 0.3s ease;
}

/* Navigation Links */
.nav-item {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--color-black);
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: letf;
    text-decoration: none;
}

.nav-item:hover {
  /* color: var(--primary-color); */
  transform: translateY(-2px);
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 169px;
    height: 44px;
    padding: 12px 30px;
    background: var(--color-green-700);
    color: var(--color-white);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
  /* background-color: var(--primary-color); */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile CTA button - hidden by default on desktop */
.mobile-cta {
  display: none;
}

.desktop-only {
  display: block;
}

.cta-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 135%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: var(--color-white);
}

/* Responsive Styles for Header */
@media screen and (max-width: 1440px) {
  .nav-header {
    padding: 10px 40px;
  }
}

@media screen and (max-width: 1200px) {
  .nav-header {
    padding: 12px 40px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-item {
    font-size: 15px;
    text-align: left;
  }

  .cta-button {
    width: 160px;
    padding: 10px 25px;
  }

  .cta-text {
    font-size: 15px;
  }

  .logo img {
    max-height: 30px;
  }

  .header-wrapper.scrolled {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  }
}

@media screen and (max-width: 992px) {
  .nav-header {
    padding: 10px 2%;
  }

  .nav-links {
    gap: 15px;
  }

  .nav-item {
    font-size: 14px;
    text-align: left;
  }

  .dropdown-arrow {
    width: 14px;
    height: 14px;
    margin-left: 4px;
  }

  .nav-links img {
    width: 14px;
    height: 14px;
  }

  .cta-button {
    width: 140px;
    padding: 8px 20px;
    height: 40px;
  }

  .cta-text {
    font-size: 14px;
  }

  .logo img {
    max-height: 28px;
  }

  .header-wrapper.scrolled {
    border-bottom-width: 1px;
  }
}

@media screen and (min-width: 320px) and (max-width: 768px) {
    .services-menu, 
    .products-menu {
        position: static;   
        width: 100% !important; 
        height: auto;      
        padding: 10px 15px;
        box-shadow: none;    
        border-radius: 0;
    }

    .menu-column, 
    .menu-column1 {
        padding-right: 0;   
        display: flex;
        flex-direction: column;
    }

    .menu-column a, 
    .menu-column1 a {
        font-size: 16px;     
        padding: 8px 10px;   
        line-height: 1.5;  
        display: block;
        width: 100%;
    }

    /* 3. Handle the 'show' state to ensure it works with flex */
    .services-menu.show, 
    .products-menu.show {
        display: flex;
        flex-direction: column;
        background-color: transparent;
    }
}

@media screen and (max-width: 768px) {
  .nav-header {
    padding: 12px 15px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    gap: 15px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, display 0.1s linear;
  }

  .header-wrapper.scrolled .nav-links {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e5e5e5;
  }

  .nav-links.active {
    display: flex;
    min-width: 100%;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    align-items: left;
    row-gap: 1.25rem;
    opacity: 1;
    transform: translateY(0);
  }
  .services-arrow.scrolled {
    color: #000;
  }

  .nav-item-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .dropdown-arrow {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .mobile-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 10px;
    background: var(--color-black);
  }

  .mobile-cta .cta-text {
    color: var(--color-white);
  }

  .cta-button {
    width: 100%;
  }

  /* Hamburger menu animation */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--color-black);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--color-black);
  }

  .logo img {
    max-height: 26px;
  }
}

@media screen and (max-width: 576px) {
  .nav-header {
    padding: 10px 12px;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    margin: 4px 0;
  }

  .logo img {
    max-height: 24px;
  }

  .nav-links {
    padding: 15px;
  }

  .nav-item {
    font-size: 16px;
    padding: 8px 0;
    width: 100%;
    text-align: left;
    display: block;
  }

  .mobile-cta {
    padding: 10px 20px;
    margin-top: 8px;
  }

  .mobile-cta .cta-text {
    font-size: 15px;
  }

  .header-wrapper.scrolled {
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  }

  .header-wrapper.scrolled .nav-links {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

@media screen and (max-width: 480px) {
  .logo {
    font-size: 22px;
  }

  .nav-header {
    padding: 8px 10px;
  }

  .logo img {
    max-height: 26px;
  }

  .menu-toggle span {
    width: 20px;
    margin: 3px 0;
  }

  .nav-links {
    padding: 12px;
    gap: 12px;
  }

  .nav-item {
    font-size: 15px;
    text-align: left;
  }

  .mobile-cta {
    padding: 8px 15px;
    height: 40px;
  }

  .mobile-cta .cta-text {
    font-size: 14px;
  }

  .header-wrapper.scrolled {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  }
}

@media screen and (max-width: 375px) {
  .logo img {
    max-height: 24px;
  }

  .nav-header {
    padding: 8px;
  }

  .menu-toggle span {
    width: 18px;
    height: 1.5px;
  }

  .nav-item {
    font-size: 14px;
    text-align: left;
  }

  .mobile-cta {
    height: 38px;
  }

  .mobile-cta .cta-text {
    font-size: 13px;
  }
}

@media screen and (max-width: 320px) {
  .logo img {
    max-height: 18px;
  }

  .nav-header {
    padding: 6px;
  }

  .menu-toggle span {
    width: 16px;
    height: 1.5px;
    margin: 3px 0;
  }

  .nav-links {
    padding: 10px;
  }

  .nav-item {
    font-size: 13px;
    text-align: left;
  }

  .mobile-cta {
    height: 36px;
    padding: 6px 12px;
  }

  .mobile-cta .cta-text {
    font-size: 12px;
  }

  .hero-cta,
  .hero-secondary-cta {
    min-width: 100px;
    padding: 6px 10px;
  }

  .hero-cta .hero-cta-text,
  .hero-secondary-cta .hero-cta-text {
    font-size: 12px;
  }
}


/* 
/* ========================================
   DARK THEME
   ========================================
[data-theme="dark"] body {
    background: #0d0d0d;
}

[data-theme="dark"] .header-wrapper {
    background: transparent;
    border-bottom: 1px solid transparent;
}

[data-theme="dark"] .header-wrapper:not(.scrolled) .logo img {
    content: url("../Assets/images/KM_SOFT_dark.svg");
}

[data-theme="dark"] .nav-header {
    background: transparent;
}

    .nav-links img {
        filter: invert(0);
    }
[data-theme="dark"] .nav-item {
    color: #FFFFFF;
}

[data-theme="dark"] .nav-item:hover {
    color: #ffffff;
}

[data-theme="dark"] .dropdown-arrow {
    filter: invert(1);
}

[data-theme="dark"] .nav-links img {
    filter: invert(1);
}

[data-theme="dark"] .menu-toggle span {
    background: #ffffff;
}

[data-theme="dark"] .cta-button {
    background: #ffffff;
    color: #000;
    border: none;
}

[data-theme="dark"] .cta-button:hover {
    background: #e0e0e0;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .cta-text {
    color: #000;
}

[data-theme="dark"] .nav-item-wrapper {
    border-bottom-color: #333;
} */





/* ==================================
    simon says start 
    ===============================*/
.hero {
    position: relative;
    width: 1920px;
    height: 925px;
    background: url("../Assets/trainer/simon1.webp") center/cover no-repeat;
    overflow: hidden;
}

/* BACKGROUND VIDEO */
.bg-video {
    position: absolute;
    top: 290px;
    left: 448px;
    width: 1087px;
    height: 611px;
    border-radius: 20px;
    border: 12px solid #000;
    object-fit: cover;
    z-index: 1;
}

/* BOTTOM WAVE */
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: white;
    clip-path: polygon(
        0% 50%, 
        10% 60%, 
        20% 50%, 
        30% 65%, 
        40% 55%, 
        50% 70%, 
        60% 55%, 
        70% 65%, 
        80% 50%, 
        90% 60%, 
        100% 50%, 
        100% 100%, 
        0% 100%
    );
    z-index: 5;
}


/* ===============================
   TABLET & SMALL LAPTOP (1440px)
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {

.hero {
    width: 100%;
    height: 780px;
}

.bg-video {
    top: 183px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 575px;
    border-radius: 16px;
    border: 10px solid #000;
}

.wave {
    height: 90px;
}

}

/* ===============================
   TABLET & SMALL LAPTOP (1200px)
================================ */
/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px){

 .hero {
    width: 100%;
        height: 700px;
    }

    .bg-video {
        width: 800px;
        height: 450px;
        top: 230px;
        left: 50%;
        transform: translateX(-50%);
    }

    .wave {
        height: 90px;
    }

}

/* ===============================
   TABLET & SMALL LAPTOP (1024px)
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
 .hero {
        width: 100%;
        height: 650px;
        background-position: center;
        background-size: cover;
    }

    .bg-video {
        top: 180px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 455px;
        border-radius: 15px;
        border: 8px solid #000;
    }

    .wave {
        height: 80px;
    }

}

/* ===============================
   EXTRA SMALL DEVICES (768px)
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px){

   .hero {
        width: 100%;
        height: auto;
        padding: 60px 20px;
        background-position: center;
        background-size: cover;
    }

    /* Responsive Video */
    .bg-video {
        position: relative;
        top: 43px;
        left: 115px;
        width: 75%;
        height: auto;
        max-width: 74%;
        border-radius: 15px;
        border: 8px solid #000;
        display: block;

    }

    /* Responsive Wave */
    .wave {
        height: 80px;
    }

}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {
  .hero {
        width: 100%;
        height: 600px; /* adjust height for mobile */
        background-position: center;
        background-size: cover;
    }

    .bg-video {
        top: 368px;
        left: 35%;
        transform: translateX(-50%);
        width: 90%;
        height: auto;
        border-radius: 12px;
        border: 6px solid #000;
    }

    .wave {
        height: 80px;
    }
}

/* ===============================
   EXTRA SMALL DEVICES (425px)
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {

  .hero {
        width: 100%;
        height: 600px; /* adjust height for mobile */
        background-position: center;
        background-size: cover;
    }

    .bg-video {
        top: 368px;
        left: 35%;
        transform: translateX(-50%);
        width: 90%;
        height: auto;
        border-radius: 12px;
        border: 6px solid #000;
    }

    .wave {
        height: 80px;
    }
}

/* ===============================
   EXTRA SMALL DEVICES (375px)
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px)  {

  .hero {
        width: 100%;
        height: 650px;   /* adjust height for mobile */
        background-position: center;
        background-size: cover;
    }

    .bg-video {
        top: 440px;
        left: 33%;
        transform: translateX(-50%);
        width: 90%;          /* responsive width */
        height: auto;       /* smaller height */
        border-radius: 12px;
        border: 6px solid #000;
    }

    .wave {
        height: 80px;
    }

}

/* ===============================
   EXTRA SMALL DEVICES (320px)
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

  .hero {
        width: 100%;
        height: 500px;
        background-position: center;
        background-size: cover;
    }

    .bg-video {
        position: absolute;
        top: 370px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        height: auto;
        border-radius: 12px;
        border: 6px solid #000;
    }

    .wave {
        height: 70px;
    }

}













/* ==================================
    ai-text
    ===============================*/
.ai {
    width: 1520px;
    height: 840px;
    padding-top: 100px;
    margin: auto;
    background-color: #fff;
}

.ai-text {
    width: 1374px;
    height: 350px;
}

.ai-text p {
    width: 100%;
    font-family: JUST Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 44px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #595959;
}

.ai-text span{
    font-family: JUST Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 44px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #0D0D0D;
}

.ai-text img {
    width: 72px;
    height: 72px;
    border-radius: 100px;
}

.ai-column {
    padding-top: 190px;
    width: 1520px;
    height: 222px;
}

.ai-column1{
    width: 1520px;
    height: 106px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.ai1 {
    background-color: #F8F8F8;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.ai1:hover {
    background-color: #eee9e9;
}

.ai1 span {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: #262626;
}

.ai1 h1 {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #808080;
}

.ai-column2{
    width: 1520px;
    height: 106px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 10px;
}

/* ===============================
   EXTRA SMALL DEVICES (1440px)
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {

    .ai {
        max-width: 1314px;
        padding-top: 80px;
    }

    .ai-text p,
    .ai-text span {
        width: 100%;
        font-size: 38px;
    }

    .ai-column {
        width: 1300px;
        padding-top: 140px;
    }

    .ai-column1 {
        width: 1300px;
        gap: 15px;
    }

    .ai-column2 {
        width: 1300px;
        gap: 15px;
    }

    .ai1 {
        padding: 18px;
    }

    .ai1 span,
    .ai1 h1 {
        font-size: 18px;
    }
}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {

    .ai {
        width: 95%;
        height: auto;
        padding-top: 70px;
    }

    .ai-text {
        width: 100%;
        height: auto;
    }

    .ai-text p,
    .ai-text span {
        font-size: 32px;
        line-height: 1.4;
    }

    .ai-text img {
        width: 60px;
        height: 60px;
    }

    .ai-column {
        width: 100%;
        height: auto;
        padding-top: 100px;
    }

    .ai-column1 {
        width: 100%;
        height: auto;
        gap: 20px;
    }

    .ai-column2 {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding-top: 20px;
    }

    .ai1 {
        padding: 25px;
    }

    .ai1 span,
    .ai1 h1 {
        font-size: 18px;
    }
}

/* ========================= */
/* 1024px Responsive */
/* ========================= */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

    .ai {
        width: 95%;
        height: auto;
        padding-top: 70px;
    }

    .ai-text {
        width: 100%;
        height: auto;
    }

    .ai-text p,
    .ai-text span {
        font-size: 32px;
        line-height: 1.4;
    }

    .ai-text img {
        width: 60px;
        height: 60px;
    }

    .ai-column {
        width: 100%;
        height: auto;
        padding-top: 100px;
    }

    .ai-column1 {
        width: 100%;
        height: auto;
        gap: 20px;
    }

    .ai-column2 {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding-top: 20px;
    }

    .ai1 {
        padding: 25px;
    }

    .ai1 span,
    .ai1 h1 {
        font-size: 18px;
    }
}

/* ========================= */
/* TABLET - 768px */
/* ========================= */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {

    .ai {
        width: 100%;
        height: auto;
        padding: 60px 20px;
    }

    .ai-text {
        width: 100%;
        height: auto;
        text-align: center;
    }

    .ai-text p,
    .ai-text span {
        font-size: 28px;
        line-height: 1.4;
    }

    .ai-text img {
        width: 60px;
        height: 60px;
    }

    .ai-column {
        width: 100%;
        height: auto;
        padding-top: 80px;
    }

    /* First row → 2 columns instead of 3 */
    .ai-column1 {
        width: 100%;
        height: auto;
        gap: 15px;
    }

    /* Second row → 2 columns */
    .ai-column2 {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding-top: 15px;
    }

    .ai1 {
        padding: 25px 15px;
    }

    .ai1 span,
    .ai1 h1 {
        font-size: 18px;
    }
}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {
    .ai {
        width: 100%;
        padding: 60px 20px;
    }

    .ai-text {
        width: 100%;
        height: auto;
    }

    .ai-text p,
    .ai-text span {
        width: 100%;
        font-size: 22px;
        line-height: 1.4;
        text-align: center;
    }

    .ai-text img {
        width: 50px;
        height: 50px;
    }

    /* Column 1 → Stack 3 into 1 column */
    .ai-column1 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Column 2 → Stack 2 into 1 column */
    .ai-column2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ai1 {
        padding: 18px;
    }

    .ai1 span,
    .ai1 h1 {
        font-size: 16px;
    }

    .ai-column {
        padding-top: 50px;
    }
}

/* ============================= */
/* MOBILE RESPONSIVE (425px) */
/* ============================= */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {

    .ai {
        padding: 60px 20px;
    }

    .ai-text {
        width: 100%;
        height: auto;
    }

    .ai-text p,
    .ai-text span {
        font-size: 22px;
        line-height: 1.4;
        text-align: center;
    }

    .ai-text img {
        width: 50px;
        height: 50px;
    }

    /* Column 1 → Stack 3 into 1 column */
    .ai-column1 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Column 2 → Stack 2 into 1 column */
    .ai-column2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ai1 {
        padding: 18px;
    }

    .ai1 span,
    .ai1 h1 {
        font-size: 16px;
    }

    .ai-column {
        padding-top: 50px;
    }
}

/* ============================= */
/* MOBILE - 375px */
/* ============================= */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {

    .ai {
        width: 100%;
        height: auto;
        padding: 50px 20px;
    }

    .ai-text {
        width: 100%;
        height: auto;
    }

    .ai-text p,
    .ai-text span {
        font-size: 22px;
        line-height: 1.4;
    }

    .ai-text img {
        width: 50px;
        height: 50px;
    }

    .ai-column {
        width: 100%;
        height: auto;
        padding-top: 60px;
    }

    /* Change 3 columns → 1 column */
    .ai-column1 {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Change 2 columns → 1 column */
    .ai-column2 {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr;
        gap: 15px;
        padding-top: 15px;
    }

    .ai1 {
        padding: 15px;
    }

    .ai1 span,
    .ai1 h1 {
        font-size: 16px;
    }
}

/* ========================= */
/* MOBILE 320px */
/* ========================= */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

    .ai {
        width: 100%;
        height: auto;
        padding: 40px 15px;
    }

    .ai-text {
        width: 100%;
        height: auto;
    }

    .ai-text p,
    .ai-text span {
        font-size: 18px;
        line-height: 1.6;
    }

    .ai-text img {
        width: 40px;
        height: 40px;
    }

    .ai-column {
        padding-top: 40px;
        width: 100%;
        height: auto;
    }

    /* 3 columns → 1 column */
    .ai-column1 {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* 2 columns → 1 column */
    .ai-column2 {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr;
        gap: 15px;
        padding-top: 15px;
    }

    .ai1 {
        padding: 15px;
    }

    .ai1 span {
        font-size: 16px;
    }

    .ai1 h1 {
        font-size: 16px;
    }
}











/* ==================================
    ai-text
    ===============================*/
.transcription {
    width: 1306px;
    height: 1090px;
    margin: auto;
    padding-top: 160px;
}

.Problem{
    width: 1306px;
    height: 458px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.Problem-img img {
    width: 400px;
    height: 458px;
    border-radius: 16px;
}

.problem-text {
    width: 886px;
    height: 458px;
    border-radius: 16px;
    padding: 60px;
    background: linear-gradient(117.56deg, #591368 1.83%, #6A0F66 13.74%, #800B63 25.64%, #9A055F 37.55%, #B3025B 49.45%, #BF114D 61.36%, #C81E46 71.28%, #D6403D 81.2%, #E56234 97.07%);
}

.problem-text:hover {
    background: linear-gradient(117.56deg, #E56234 1.83%, #D6403D 13.74%, #C81E46 25.64%, #BF114D 37.55%, #B3025B 49.45%, #9A055F 61.36%, #800B63 71.28%, #6A0F66 81.2%, #591368 97.07%);
    transition: 0.3s;
}

.text-p h1 {
    font-family: Inter Display;
    font-weight: 700;
    font-style: Bold;
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #FAFAFA;
}

.text-p p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #F2F2F2;
    padding-top: 20px;
}

.text-p h2 {
    font-family: Inter Display;
    font-weight: 500;
    font-style: Medium;
    font-size: 26px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #F2F2F2;
    padding-top: 75px;
}

.Solution{
    width: 1306px;
    height: 458px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 20px;
}

.solution-img img {
    width: 400px;
    height: 458px;
    border-radius: 16px;
}

/* ========================= */
/* 1440px Responsive */
/* ========================= */
@media (max-width: 1440px) {

    .transcription {
        max-width: 1200px;
        width: 90%;
        padding-top: 120px;
    }

    .Problem,
    .Solution {
        width: 100%;
        height: auto;
        gap: 30px;
    }

    .Problem-img img,
    .solution-img img {
        width: 100%;
        height: 100%;
        max-height: 458px;
        object-fit: cover;
    }

    .problem-text {
        width: 100%;
        height: auto;
        padding: 40px;
    }

    .text-p h1 {
        font-size: 32px;
    }

    .text-p p {
        font-size: 17px;
    }

    .text-p h2 {
        font-size: 24px;
        padding-top: 50px;
    }
}

/* ========================= */
/* 1024px Responsive */
/* ========================= */
@media (max-width: 1024px) {

    .transcription {
        width: 90%;
        height: auto;
        padding-top: 100px;
    }

    .Problem,
    .Solution {
        width: 100%;
        height: auto;
        gap: 25px;
    }

    .Problem-img img,
    .solution-img img {
        width: 450px;
        height: 490px;
        object-fit: fill;
        margin-top: 30px;
    }

    .problem-text {
        width: 100%;
        height: auto;
        padding: 40px;
    }

    .text-p h1 {
        font-size: 28px;
    }

    .text-p p {
        font-size: 16px;
    }

    .text-p h2 {
        font-size: 22px;
        padding-top: 40px;
    }
}

/* ========================= */
/* 768px Responsive */
/* ========================= */
@media (max-width: 768px) {

    .transcription {
        width: 90%;
        height: auto;
        padding-top: 100px;
    }

    .Problem,
    .Solution {
        width: 100%;
        height: auto;
        gap: 25px;
        grid-template-columns: 1fr;
    }

    .Problem-img img,
    .solution-img img {
        width: 450px;
        height: 490px;
        object-fit: fill;
        margin-top: 30px;
        margin-left: 130px;
    }

    .problem-text {
        width: 100%;
        height: auto;
        padding: 40px;
    }

    .text-p h1 {
        font-size: 28px;
    }

    .text-p p {
        font-size: 16px;
    }

    .text-p h2 {
        font-size: 22px;
        padding-top: 40px;
    }
}

/* ========================= */
/* 425px Responsive */
/* ========================= */
@media (max-width: 425px) {

    .transcription {
        width: 100%;
        height: auto;
        padding: 40px 20px;
    }

    .Problem,
    .Solution {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr;   /* Make single column */
        gap: 20px;
        padding-top: 10px;
    }

    .Problem-img img,
    .solution-img img {
        width: 100%;
        height: auto;
        margin: 0;
    }

    .problem-text {
        width: 100%;
        height: auto;
        padding: 30px 20px;
    }

    .text-p h1 {
        font-size: 22px;
        line-height: 1.2;
    }

    .text-p p {
        font-size: 15px;
        line-height: 1.6;
        padding-top: 15px;
    }

    .text-p h2 {
        font-size: 18px;
        padding-top: 30px;
    }
}

/* ========================= */
/* 375px Responsive */
/* ========================= */
@media (max-width: 375px) {

    .transcription {
        width: 100%;
        height: auto;
        padding: 40px 20px;
    }

    .Problem,
    .Solution {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr;   
        gap: 20px;
        padding-top: 10px;
    }

    .Problem-img img,
    .solution-img img {
        width: 100%;
        height: auto;
        margin: 0;
    }

    .problem-text {
        width: 100%;
        height: auto;
        padding: 30px 20px;
    }

    .text-p h1 {
        font-size: 22px;
        line-height: 1.2;
    }

    .text-p p {
        font-size: 15px;
        line-height: 1.6;
        padding-top: 15px;
    }

    .text-p h2 {
        font-size: 18px;
        padding-top: 30px;
    }
}

/* ========================= */
/* 320px Responsive */
/* ========================= */
@media (max-width: 320px) {

    .transcription {
        width: 100%;
        height: auto;
        padding: 40px 20px;
    }

    .Problem,
    .Solution {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr;   
        gap: 20px;
        padding-top: 10px;
    }

    .Problem-img img,
    .solution-img img {
        width: 100%;
        height: auto;
        margin: 0;
    }

    .problem-text {
        width: 100%;
        height: auto;
        padding: 30px 20px;
    }

    .text-p h1 {
        font-size: 22px;
        line-height: 1.2;
    }

    .text-p p {
        font-size: 15px;
        line-height: 1.6;
        padding-top: 15px;
    }

    .text-p h2 {
        font-size: 18px;
        padding-top: 30px;
    }
}
















/* ==================================
    Development
    ===============================*/ 
.Development {
    width: 1306px;
    height: 1760px;
    gap: 100px;
    padding-top: 150px;
    margin: auto;
}

.Development1 h1 {
    width: 1306px;
    height: 47px;
    font-family: Inter Display;
    font-weight: 700;
    font-style: Bold;
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #262626;
}

.Journey {
    padding-top: 100px;
}

.Journey1 {
    width: 1306px;
    height: 239px;
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

.number {
    width: 460px;
    height: 146px;
}

.number h2 {
    font-weight: 900;
    font-style: Black;
    font-size: 200px;
    line-height: 1;
    text-align: right;
    color: #F5F5F5;
}

.number1 h2 {
    font-weight: 900;
    font-style: Black;
    font-size: 200px;
    line-height: 1;
    padding-right: 225px;
    color: #F5F5F5;
}

.number2 h2 {
    font-weight: 900;
    font-style: Black;
    font-size: 200px;
    line-height: 1;
    padding-right: 225px;
    color: #F5F5F5;
}

.text-journey {
    width: 504px;
    height: 239px;
}

.text-journey img {
    width: 60px;
    height: 60px;
}

.text-journey span {
    width: 460px;
    font-family: Inter Display;
    font-weight: 500;
    font-style: Medium;
    font-size: 26px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.text-journey p{
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #404040;
}

.Journey2 {
    width: 1306px;
    height: 310px;
    display: flex;
    justify-content: space-between;
    padding-top: 120px;
}

.Journey3 {
    width: 1306px;
    height: 310px;
    display: flex;
    justify-content: space-between;
    padding-top: 120px;
}

.Journey4 {
    width: 1306px;
    height: 310px;
    display: flex;
    justify-content: space-between;
    padding-top: 120px;
}

.Journey5 {
    width: 1306px;
    height: 310px;
    display: flex;
    justify-content: space-between;
    padding-top: 120px;
}

/* ========================= */
/* 1440px Responsive */
/* ========================= */
@media (max-width: 1440px) {

    .Development {
        max-width: 1306px;
        width: 90%;
        height: auto;
        padding-top: 120px;
    }

    .Development1 h1 {
        width: 100%;
        font-size: 34px;
    }

    .Journey1,
    .Journey2,
    .Journey3,
    .Journey4,
    .Journey5 {
        width: 100%;
        height: auto;
        padding-top: 80px;
    }

    .number,
    .text-journey {
        width: 48%;
    }

    .number h2,
    .number1 h2,
    .number2 h2 {
        font-size: 180px; /* slightly smaller */
    }

    .text-journey span {
        font-size: 24px;
    }

    .text-journey p {
        font-size: 17px;
    }
}

/* ========================= */
/* 1024px Responsive */
/* ========================= */
@media (max-width: 1024px) {

    .Development {
        max-width: 1306px;
        width: 90%;
        height: auto;
        padding-top: 120px;
    }

    .Development1 h1 {
        width: 100%;
        font-size: 34px;
    }

    .Journey1,
    .Journey2,
    .Journey3,
    .Journey4,
    .Journey5 {
        width: 100%;
        height: auto;
        padding-top: 80px;
    }

    .number,
    .text-journey {
        width: 48%;
    }

    .number h2,
    .number1 h2,
    .number2 h2 {
        font-size: 180px; /* slightly smaller */
    }

    .text-journey span {
        font-size: 24px;
    }

    .text-journey p {
        font-size: 17px;
    }
}

/* ========================= */
/* 768px Responsive */
/* ========================= */
@media (max-width: 768px) {

    .Development {
        width: 100%;
        height: auto;
        padding: 80px 30px;
    }

    .Development1 h1 {
        width: 100%;
        height: auto;
        font-size: 28px;
    }

    .Journey {
        padding-top: 60px;
    }

    /* All Journey rows */
    .Journey1,
    .Journey2,
    .Journey3,
    .Journey4,
    .Journey5 {
        width: 100%;
        height: auto;
        gap: 30px;
        padding-top: 60px;
    }

    /* Number Section */
    .number,
    .number1,
    .number2 {
        width: 100%;
        height: auto;
    }

    .number h2,
    .number1 h2,
    .number2 h2 {
        font-size: 120px;   /* Reduce size */
        text-align: left;
        padding-right: 0;
    }

    /* Text Section */
    .text-journey {
        width: 100%;
        height: auto;
    }

    .text-journey img {
        width: 50px;
        height: 50px;
    }

    .text-journey span {
        width: 100%;
        font-size: 22px;
        display: block;
        margin-top: 10px;
    }

    .text-journey p {
        font-size: 16px;
        margin-top: 10px;
    }
}

/* ========================= */
/* 425px Responsive */
/* ========================= */
@media (max-width: 425px) {

    .Development {
        width: 100%;
        height: auto;
        padding: 60px 20px;
    }

    .Development1 h1 {
        width: 100%;
        height: auto;
        font-size: 22px;
        line-height: 1.3;
    }

    .Journey {
        padding-top: 40px;
    }

    .Journey1,
    .Journey2,
    .Journey3,
    .Journey4,
    .Journey5 {
        width: 100%;
        height: auto;
        flex-direction: column;    
        gap: 20px;
        padding-top: 40px;
    }

    .number,
    .number1,
    .number2 {
        width: 100%;
        height: auto;
        text-align: left;
    }

    .number h2,
    .number1 h2,
    .number2 h2 {
        font-size: 80px;    
        text-align: left;
        padding-right: 0;
    }

    .text-journey {
        width: 100%;
        height: auto;
    }

    .text-journey img {
        width: 40px;
        height: 40px;
    }

    .text-journey span {
        font-size: 18px;
        display: block;
        padding-top: 10px;
    }

    .text-journey p {
        font-size: 15px;
        padding-top: 10px;
    }
}

/* ========================= */
/* 375px Responsive */
/* ========================= */
@media (max-width: 375px) {

    .Development {
        width: 100%;
        height: auto;
        padding: 60px 20px;
    }

    .Development1 h1 {
        width: 100%;
        height: auto;
        font-size: 22px;
        line-height: 1.3;
    }

    .Journey {
        padding-top: 40px;
    }

    .Journey1,
    .Journey2,
    .Journey3,
    .Journey4,
    .Journey5 {
        width: 100%;
        height: auto;
        flex-direction: column;    
        gap: 20px;
        padding-top: 40px;
    }

    .number,
    .number1,
    .number2 {
        width: 100%;
        height: auto;
        text-align: left;
    }

    .number h2,
    .number1 h2,
    .number2 h2 {
        font-size: 80px;    
        text-align: left;
        padding-right: 0;
    }

    .text-journey {
        width: 100%;
        height: auto;
    }

    .text-journey img {
        width: 40px;
        height: 40px;
    }

    .text-journey span {
        font-size: 18px;
        display: block;
        padding-top: 10px;
    }

    .text-journey p {
        font-size: 15px;
        padding-top: 10px;
    }
}

/* ========================= */
/* 320px Responsive */
/* ========================= */
@media (max-width: 320px) {

    .Development {
        width: 100%;
        height: auto;
        padding: 60px 20px;
    }

    .Development1 h1 {
        width: 100%;
        height: auto;
        font-size: 22px;
        line-height: 1.3;
    }

    .Journey {
        padding-top: 40px;
    }

    .Journey1,
    .Journey2,
    .Journey3,
    .Journey4,
    .Journey5 {
        width: 100%;
        height: auto;
        flex-direction: column;    
        gap: 20px;
        padding-top: 40px;
    }

    .number,
    .number1,
    .number2 {
        width: 100%;
        height: auto;
        text-align: left;
    }

    .number h2,
    .number1 h2,
    .number2 h2 {
        font-size: 80px;    
        text-align: left;
        padding-right: 0;
    }

    .text-journey {
        width: 100%;
        height: auto;
    }

    .text-journey img {
        width: 40px;
        height: 40px;
    }

    .text-journey span {
        font-size: 18px;
        display: block;
        padding-top: 10px;
    }

    .text-journey p {
        font-size: 15px;
        padding-top: 10px;
    }
}











/* ==================================
    imgs
    ===============================*/ 
.img-3 {
    width: 1306px;
    height: 1320px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 250px;
    margin: auto;
}

.simon-img1 img {
    width: 643px;
    height: 943px;
    border-radius: 16px;
    object-fit: cover;
}


.simon-img2 .img1 {
    width: 643px;
    height: 461px;
    border-radius: 16px;
    object-fit: cover
} 

.simon-img2 .img2 {
    width: 643px;
    height: 478px;
}

/* ========================= */
/* 1440px Responsive */
/* ========================= */
@media (max-width: 1440px) {

    .img-3 {
        padding-top: 150px;
        gap: 15px;
    }

}

/* ========================= */
/* 1024px Responsive */
/* ========================= */
@media (max-width: 1024px) {

    .img-3 {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 100px 20px 0;
    }

    .simon-img1 img {
        width: 100%;
        height: 700px;
        object-fit: cover;
    }

    .simon-img2 .img1,
    .simon-img2 .img2 {
        width: 100%;
        height: 340px;
        object-fit: cover;
    }

}

/* ========================= */
/* 768px Responsive */
/* ========================= */
@media (max-width: 768px) {
    .img-3 {
        grid-template-columns: 1fr;
    }
}

/* ========================= */
/* 425px Responsive */
/* ========================= */
@media (max-width: 425px) {

    .img-3 {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr;
        gap: 15px;
        padding-top: 60px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .simon-img1 img,
    .simon-img2 .img1,
    .simon-img2 .img2 {
        width: 100%;
        height: auto;          
        border-radius: 12px;
    }

}

/* ========================= */
/* 375px Responsive */
/* ========================= */
@media (max-width: 375px) {

    .img-3 {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr;  
        gap: 15px;
        padding-top: 80px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .simon-img1 img,
    .simon-img2 .img1,
    .simon-img2 .img2 {
        width: 100%;
        height: auto;  
        border-radius: 12px;
    }

}

/* ========================= */
/* 320px Responsive */
/* ========================= */
@media (max-width: 320px) {

    .img-3 {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr;   
        gap: 15px;
        padding-top: 40px;
    }

    .simon-img1 img,
    .simon-img2 .img1,
    .simon-img2 .img2 {
        width: 100%;
        height: auto;      
}
}










/* ========================================
   KEY SECTION
   ======================================== */
.key-feature {
    width: 1920px;
    height: 826px;
    background-color: #0D0D0D;
    padding-top: 160px;
    padding: 100px 200px;
} 

.key1 {
    display: flex;
    justify-content: space-between;
}

.key1 h1{
    width: 242px;
    height: 47px;
    font-family: Inter Display;
    font-weight: 700;
    font-style: Bold;
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #FFF;
}

.key1 p{
    width: 564px;
    height: 87px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #BFBFBF;
}

.key-icon {
    width: 1520px;
    height: 439px;
    gap: 57px;
}

.key-icon1 {
    padding-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
}

.icon-text:hover {
    transform: translateY(-4px);
    transition: 0.3s;
}

.icon-box{
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 18px;
    border: 1px solid #595959;
}

.icon-box img{
    width: 24px;
    height: 24px;
}


.icon-text h1 {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: #E6E6E6;
    padding-top: 20px;
}

.icon-text p{
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
        text-align: center;
    color: #999999;
    padding-top: 20px;
}


.key-icon2 {
    padding-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr ;
    gap: 80px;
}

/* ===============================
   WORK SECTION - LARGE SCREEN (max-width:2560px)
================================ */

@media screen and (max-width:2560px){

  /* SECTION */
  .key-feature {
    margin: auto;
  }
}

/* ===============================
   LARGE SCREENS (max-width: 1440px)
================================ */

@media screen and (max-width: 1440px){

/* Main Section */
.key-feature{
    width: 100%;
    height: auto;
    padding: 80px 120px;
}

/* Heading Row */
.key1 h1{
    font-size: 32px;
}

.key1 p{
    width: 480px;
    font-size: 17px;
}

/* Icon Container */
.key-icon{
    width: 100%;
    height: auto;
}

/* Icon Grids */
.key-icon1,
.key-icon2{
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

/* Icon Box */
.icon-box{
    width: 48px;
    height: 48px;
}

.icon-box img{
    width: 22px;
    height: 22px;
}

/* Icon Text */
.icon-text h1{
    font-size: 18px;
}

.icon-text p{
    font-size: 16px;
}

}

/* ===============================
   TABLET DEVICES (1024px)
================================ */
@media screen and (max-width: 1024px) {

  .key-feature{
    width: 100%;
    height: auto;
    padding: 80px 60px;
    margin-top: 60px;
  }

  .key1{
    gap: 30px;
  }

  .key1 h1{
    width: 100%;
    font-size: 32px;
  }

  .key1 p{
    width: 100%;
    font-size: 16px;
  }

  .key-icon{
    width: 100%;
    height: auto;
  }

  /* 4 columns → 2 columns */
  .key-icon1,
  .key-icon2{
    gap: 50px;
    padding-top: 70px;
  }

  .icon-text h1{
    font-size: 18px;
  }

  .icon-text p{
    font-size: 16px;
  }

}

/* ===============================
   TABLET DEVICES (max-width: 768px)
================================ */

@media screen and (max-width: 768px){

/* Section Container */
.key-feature{
    width: 100%;
    height: auto;
    padding: 60px 30px;
}

/* Title + Description */
.key1{
    gap: 20px;
}

.key1 h1{
    width: 100%;
    font-size: 28px;
}

.key1 p{
    width: 100%;
    font-size: 16px;
}

/* Icon Area */
.key-icon{
    width: 100%;
    height: auto;
}

/* Icon Grid (2 columns instead of 4) */
.key-icon1,
.key-icon2{
    gap: 40px;
    padding-top: 60px;
}

/* Icon Box */
.icon-box{
    width: 48px;
    height: 48px;
}

.icon-box img{
    width: 22px;
    height: 22px;
}

/* Icon Text */
.icon-text h1{
    font-size: 18px;
}

.icon-text p{
    font-size: 15px;
}

}

/* ===============================
   MOBILE DEVICES (425px & BELOW)
================================ */

@media screen and (max-width: 425px){

/* SECTION */
.key-feature{
    width: 100%;
    height: auto;
    padding: 40px 20px;
}

/* TOP TEXT */
.key1{
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.key1 h1{
    width: 100%;
    height: auto;
    font-size: 24px;
}

.key1 p{
    width: 100%;
    height: auto;
    font-size: 15px;
}

/* ICON CONTAINER */
.key-icon{
    width: 100%;
    height: auto;
}

/* GRID → 2 COLUMNS */
.key-icon1,
.key-icon2{
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 50px;
}

/* ICON BOX */
.icon-box{
    width: 48px;
    height: 48px;
}

.icon-box img{
    width: 22px;
    height: 22px;
}

/* TEXT */
.icon-text h1{
    font-size: 16px;
    padding-top: 15px;
}

.icon-text p{
    font-size: 14px;
    padding-top: 10px;
}

}

/* ===============================
   MOBILE DEVICES (max-width: 375px)
================================ */

@media screen and (max-width: 375px){

/* SECTION */
.key-feature{
    width: 100%;
    height: auto;
    padding: 50px 20px;
}

/* TITLE ROW */
.key1{
    flex-direction: column;
    gap: 20px;
}

.key1 h1{
    width: 100%;
    height: auto;
    font-size: 26px;
    text-align: center;
}

.key1 p{
    width: 100%;
    height: auto;
    font-size: 16px;
    text-align: center;
}

/* ICON CONTAINER */
.key-icon{
    width: 100%;
    height: auto;
}

/* FIRST ICON GRID */
.key-icon1{
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 60px;
}

/* SECOND ICON GRID */
.key-icon2{
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 60px;
}

/* ICON BOX */
.icon-box{
    width: 48px;
    height: 48px;
}

/* ICON IMAGE */
.icon-box img{
    width: 22px;
    height: 22px;
}

/* ICON TEXT */
.icon-text h1{
    font-size: 18px;
}

.icon-text p{
    font-size: 15px;
}

}


/* ===============================
   EXTRA SMALL DEVICES (320px)
================================ */
@media screen and (max-width: 320px) {

  /* Main Section */
  .key-feature {
    width: 100%;
    height: auto;
    padding: 40px 15px;
  }

  /* Top Text Area */
  .key1 {
    flex-direction: column;
    gap: 20px;
  }

  .key1 h1 {
    width: 100%;
    font-size: 22px;
    text-align: center;
  }

  .key1 p {
    width: 100%;
    font-size: 14px;
    text-align: center;
  }

  /* Icon Container */
  .key-icon {
    width: 100%;
    height: auto;
  }

  /* First Row Icons */
  .key-icon1 {
    padding-top: 40px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Second Row Icons */
  .key-icon2 {
    padding-top: 40px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Icon Box */
  .icon-box {
    width: 48px;
    height: 48px;
  }

  .icon-box img {
    width: 22px;
    height: 22px;
  }

  /* Icon Text */
  .icon-text h1 {
    font-size: 16px;
    padding-top: 12px;
  }

  .icon-text p {
    font-size: 13px;
    padding-top: 10px;
  }

}








/* ========================================
   project section
   ======================================== */ 
.project {
    width: 1520px;
    height: 769px;
    margin: auto;
    margin-top: 140px;
    background: url(../Assets/trainer/simon18.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.project-text {
    width: 653px;
    height: 179px;
    position: relative;
    top: 540px;
    left: 817px;
    border-radius: 16px;
    padding: 17px 39px;
    background: #000000B2;
}

.project-text:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

.project-text p{
    width: 575px;
    height: 145px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #FAFAFA;
}

.project-text span {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    text-align: center;
    color: #FFCA09;
}

/* ========================= */
/* 1440px Responsive */
/* ========================= */
@media (max-width: 1440px) {

    .project {
        width: auto;
        height: 650px;
        margin-left: 100px;
        margin-right: 100px;
    }

    .project-text {
        width: 520px;
        padding: 15px 25px;
        top: 430px;
        left: 680px;
    }

    .project-text p {
        width: 100%;
        font-size: 16px;
        height: auto;
    }

    .project-text span {
        font-size: 16px;
    }

}

/* ========================= */
/* 1024px Responsive */
/* ========================= */
@media (max-width: 1024px) {

    .project {
        height: 600px; 
        background-position: center;
    }

    .project-text {
        width: 80%;
        left: 50%;
        top: 395px;
        left: 120px;
    }

    .project-text p {
        width: 100%;
        height: auto;
        font-size: 16px;
    }

}

/* ========================= */
/* 768px Responsive */
/* ========================= */
@media (max-width: 768px) {

    .project {
        height: 500px;
        margin-top: 80px;
        margin-left: 40px;
        margin-right: 40px;
    }

    .project-text {
        left: 200px;      
        width: 450px;
        top: 300px;
        padding: 15px 25px;
    }

    .project-text p {
        width: 100%;
        height: auto;
        font-size: 16px;
    }

    .project-text span {
        font-size: 16px;
    }

}

/* ========================= */
/* 425px Responsive */
/* ========================= */
@media (max-width: 425px) {

    .project {
        height: 304px;
        margin-top: 60px;
        display: flex;
        align-items: flex-end;   
        justify-content: center;
        padding: 20px;
        margin-left: 0;
        margin-right: 0;
    }

    .project-text {
        position: static;      
        width: 100%;
        height: auto;
        padding: 20px;
        border-radius: 12px;
    }

    .project-text p {
        width: 100%;
        height: auto;
        font-size: 14px;
    }

    .project-text span {
        font-size: 14px;
    }

}

/* ========================= */
/* 375px Responsive */
/* ========================= */
@media (max-width: 375px) {

    .project {
        height: 400px;   /* smaller hero */
    }

    .project-text {
        position: relative;
        top: 0px;
        left: 3%;
        width: 90%;
        height: auto;
        padding: 15px 20px;
    }

    .project-text p {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.5;
    }

    .project-text span {
        font-size: 14px;
    }
}

/* ========================= */
/* 320px Responsive */
/* ========================= */
@media (max-width: 320px) {

    .project {
        min-height: 400px;
        margin-top: 60px;
    }

    .project-text {
        position: relative;
        width: 190%;
        top: 0;
        left: 2%;
        margin: 0 auto;
        padding: 20px;
    }

    .project-text p {
        width: 100%;
        height: auto;
        font-size: 14px;
        text-align: center;
    }

    .project-text span {
        font-size: 14px;
    }

}


















/* ========================================
   productionsection
   ======================================== */ 
.production {
    width: 1920px;
    height: 1280px;
    margin: auto;
    margin-top: 140px;
    background: url(../Assets/trainer/simon19.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.production-text {
    width: 556px;
    height: 186px;
    position: relative;
    top: 187.25px;
    left: 120px;
    border-radius: 16px;
    padding: 17px 39px;
}

.production-text p{
    width: 575px;
    height: 145px;
    font-family: JUST Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 44px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #FAFAFA;
}

/* ========================= */
/* 1440px Responsive */
/* ========================= */
@media (max-width: 1440px) {

    .production {
        width: auto;
        height: auto;
        min-height: 1000px;
        background-position: 0;
    }

    .production-text {
        width: 480px;
        top: 150px;
        left: 80px;
    }

    .production-text p {
        width: 500px;
        font-size: 36px;
    }

}

/* ========================= */
/* 1024px Responsive */
/* ========================= */
@media (max-width: 1024px) {

    .production {
        min-height: 800px;
        margin-top: 80px;
        background-position: 0;
    }

    .production-text {
        width: 70%;
        left: 50px;
        top: 120px;
        padding: 20px;
    }

    .production-text p {
        width: 400px;
        font-size: 32px;
        line-height: 1.3;
    }

}

/* ========================= */
/* 768px Responsive */
/* ========================= */
@media (max-width: 768px) {

    .production {
        min-height: 700px;
        margin-top: 80px;
    }

    .production-text {
        width: 80%;
        top: 100px;
        left: 40%;
        transform: translateX(-50%);
        padding: 20px;
        text-align: center;
    }

    .production-text p {
        font-size: 28px;
        line-height: 1.4;
    }

}

/* ========================= */
/* 425px Responsive */
/* ========================= */
@media (max-width: 425px) {

    .production {
        min-height: 500px;
        margin-top: 60px;
        padding: 40px 20px;
        background-position: center;
    }

    .production-text {
        position: relative;
        top: unset;
        left: 38%;
        width: 100%;
        padding: 0;
    }

    .production-text p {
        width: 84%;
        height: auto;
        font-size: 22px;
        line-height: 1.4;
    }

}

/* ========================= */
/* 375px Responsive */
/* ========================= */
@media (max-width: 375px) {

    .production {
        min-height: 500px;
        margin-top: 60px;
        padding-top: 3px;
        background-position: center;
    }

    .production-text {
        position: relative;
        top: unset;
        left: 40%;
        width: 100%;
        padding: 0;
    }

    .production-text p {
        width: 90%;
        height: auto;
        font-size: 22px;
        line-height: 1.4;
    }

}

/* ========================= */
/* 320px Responsive */
/* ========================= */
@media (max-width: 320px) {

    .production {
        min-height: 400px;
        margin-top: 60px;
        padding: 40px 20px;
        background-position: center;
    }

    .production-text {
        position: relative;
        top: unset;
        left: 40%;
        width: 100%;
        padding: 0;
    }

    .production-text p {
        width: 100%;
        height: auto;
        font-size: 20px;
        line-height: 1.4;
    }

}










/* ========================================
   speed-2
   ======================================== */ 
.speed {
    width: 1920px;
    height: 1873px;
}

.speed1 {
    width: 1520px;
    height: 1074px;
    padding-top: 140px;
    padding-left: 200px;
}

.speed-img img {
    width: 1520px;
    height: 833px;
    border-radius: 16px;
    object-fit: cover;
}

.speed-text img {
    height: 100px;
    padding-left: 240px;
}

.speed-text p{
    width: 412px;
    height: 84px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: #1A1A1A;
}

.accuracy1 {
    width: 1207px;
    height: 700px;
    padding-left: 513px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.accuracy-text img {
    padding-top: 470px;
    padding-left: 185px;
}

.accuracy-text p {
    width: 346px;
    height: 84px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    text-align: center;
    color: #1A1A1A;
}

.accuracy-img img {
    width: 750px;
    height: 700px;
    border-radius: 16px;
    object-fit: cover;
}

/* ========================= */
/* 1440px Responsive */
/* ========================= */ 
@media (max-width: 2560px) {
    .speed {
        margin: auto;
    }
}

/* ========================= */
/* 1440px Responsive */
/* ========================= */
@media (max-width: 1440px) {

    .speed {
        width: 100%;
        height: auto;
    }

    .speed1 {
        width: 90%;
        height: auto;
        padding-top: 100px;
        padding-left: 100px;
    }

    .speed-img img {
        width: 100%;
        height: auto;
    }

    .speed-text img {
        height: 80px;
        padding-left: 250px;
        display: block;
    }

    .speed-text p {
        width: 40%;
        height: auto;
        padding-left: 0;
    }

    .accuracy1 {
        width: 100%;
        height: auto;
        padding-left: 100px;
        padding-right: 100px;
        grid-template-columns: 1fr 1fr;
    }

    .accuracy-img img {
        width: 100%;
        height: auto;
    }

    .accuracy-text img {
        padding-top: 200px;
        padding-left: 360px;
        display: block;
        margin: 0 auto 20px;
    }

    .accuracy-text p {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
}


/* ========================= */
/* 1024px Responsive */
/* ========================= */
@media (max-width: 1024px) {

    .speed {
        width: 100%;
        height: auto;
    }

    .speed1 {
        width: 100%;
        height: auto;
        padding: 80px 40px 0 40px;
    }

    .speed-img img {
        width: 100%;
        height: auto;
    }

    .speed-text img {
        height: 80px;
        padding-left: 0;
        display: block;
        margin: 0 auto;
    }

    .speed-text p {
        width: 100%;
        height: auto;
        padding-left: 0;
        padding-top: 20px;
        text-align: center;
        font-size: 18px;
    }

    .accuracy1 {
        width: 100%;
        height: auto;
        padding: 60px 40px;
        grid-template-columns: 1fr;
    }

    .accuracy-text img {
        padding-top: 0;
        padding-left: 0;
        display: block;
        margin: 0 auto;
        display: none;
    }

    .accuracy-text p {
        width: 100%;
        height: auto;
        font-size: 18px;
        display: none;
    }

    .accuracy-img img {
        width: 100%;
        height: auto;
    }
}

/* ========================= */
/* 768px Responsive */
/* ========================= */
@media (max-width: 768px) {

    .speed {
        width: 100%;
        height: auto;
    }

    .speed1 {
        width: 100%;
        height: auto;
        padding: 80px 40px 0 40px;
    }

    .speed-img img {
        width: 100%;
        height: auto;
    }

    .speed-text img {
        height: 80px;
        padding-left: 0;
        display: block;
        margin: 0 auto;
    }

    .speed-text p {
        width: 100%;
        height: auto;
        padding-left: 0;
        padding-top: 20px;
        text-align: center;
        font-size: 18px;
    }

    .accuracy1 {
        width: 100%;
        height: auto;
        padding: 60px 40px;
        grid-template-columns: 1fr;
    }

    .accuracy-text img {
        padding-top: 0;
        padding-left: 0;
        display: block;
        margin: 0 auto;
        display: none;
    }

    .accuracy-text p {
        width: 100%;
        height: auto;
        font-size: 18px;
        display: none;
    }

    .accuracy-img img {
        width: 100%;
        height: auto;
    }
}

/* ========================= */
/* 425px Responsive */
/* ========================= */
@media (max-width: 425px) {

    .speed {
        width: 100%;
        height: auto;
    }

    .speed1 {
        width: 100%;
        height: auto;
        padding: 80px 20px 0 20px;
    }

    .speed-img img {
        width: 100%;
        height: auto;
    }

    .speed-text img {
        height: 80px;
        padding-left: 0;
        display: block;
        margin: 0 auto;
    }

    .speed-text p {
        width: 100%;
        height: auto;
        padding-left: 0;
        padding-top: 20px;
        text-align: center;
        font-size: 18px;
    }

    .accuracy1 {
        width: 100%;
        height: auto;
        padding:10px  20px 40px 20px;
        grid-template-columns: 1fr;
    }

    .accuracy-text img {
        padding-top: 0;
        padding-left: 0;
        display: block;
        margin: 0 auto;
        display: none;
    }

    .accuracy-text p {
        width: 100%;
        height: auto;
        font-size: 18px;
        display: none;
    }

    .accuracy-img img {
        width: 100%;
        height: auto;
    }
}

/* ========================= */
/* 375px Responsive */
/* ========================= */
@media (max-width: 375px) {

    .speed {
        width: 100%;
        height: auto;
    }

    .speed1 {
        width: 100%;
        height: auto;
        padding: 80px 20px 0 20px;
    }

    .speed-img img {
        width: 100%;
        height: auto;
    }

    .speed-text img {
        height: 80px;
        padding-left: 0;
        display: block;
        margin: 0 auto;
    }

    .speed-text p {
        width: 100%;
        height: auto;
        padding-left: 0;
        padding-top: 20px;
        text-align: center;
        font-size: 18px;
    }

    .accuracy1 {
        width: 100%;
        height: auto;
        padding: 10px 20px 60px 20px;
        grid-template-columns: 1fr;
    }

    .accuracy-text img {
        padding-top: 0;
        padding-left: 0;
        display: block;
        margin: 0 auto;
        display: none;
    }

    .accuracy-text p {
        width: 100%;
        height: auto;
        font-size: 18px;
        display: none;
    }

    .accuracy-img img {
        width: 100%;
        height: auto;
    }
}

/* ========================= */
/* 320px Responsive */
/* ========================= */
@media (max-width: 320px) {

    .speed {
        width: 100%;
        height: auto;
    }

    .speed1 {
        width: 100%;
        height: auto;
        padding: 60px 20px 0 20px;   /* Reduced side padding */
        box-sizing: border-box;
    }

    .speed-img img {
        width: 100%;
        height: auto;
        display: block;
    }

    .speed-text img {
        max-width: 100%;
        display: block;
        margin: 20px auto 0 auto;
    }

    .speed-text p {
        width: 100%;
        height: auto;
        padding-top: 15px;
        text-align: center;
        font-size: 16px;   /* Smaller font for 320px */
        line-height: 1.5;
    }

    .accuracy1 {
        width: 100%;
        height: auto;
        padding: 40px 20px;
        display: grid;
        grid-template-columns: 1fr;  /* Single column */
        box-sizing: border-box;
    }

    .accuracy-text img {
        display: none;   /* No need duplicate display property */
    }

    .accuracy-text p {
        display: none;
    }

    .accuracy-img img {
        width: 100%;
        height: auto;
        display: block;
    }
}







/* ========================================
   speed-2
   ======================================== */ 
.final-product {
    width: 1920px;
    height: 2812px;
    background: linear-gradient(315.43deg, #F7F2FD 0.74%, #EDF0FC 25.56%, #FFF0F2 50.37%, #FFF5F0 75.19%, #FFFDF5 100%);
}

.final1 h1 {
    width: 502px;
    height: 47px;
    padding-top: 110px;
    padding-left: 130px;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 36px;
    line-height: 1;
    text-transform: uppercase;
    color: #141414;
}

.final-col1 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin: auto;
}

.final-col1 .the1 {
    width: 318px;
    padding-top: 130px;
    margin-left: 195px;
}

.product-col2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-left: 50px;
}

.product-col2 .the2 {
    width: 318px;
    padding-top: 102px;
}

.product-col2 p{
    width: 255px;
    height: 78px;
    padding-top: 140px;
    padding-left: 10px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #333333;
}

.final-col1 .the3 {
    width: 318px;
    padding-top: 130px;
    margin-left: 70px;
}

.product-col2 span{
    width: 329px;
    height: 78px;
    padding-top: 525px;
    padding-left: 20px;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 1.6;
    text-align: right;
    position: absolute;
    color: #333333;
}

.final-col2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    margin: auto;
    padding-top: 150px;
}

.product-col4 {
    width: 380px;
}

.product-col4 .the4 {
    width: 170px;
    height: 884px;
    margin-left: 180px;
    border-radius: 16px;
}

.product-col5 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-left: 50px;
}

.product-col5 .the5 {
    /* width: 318px; */
    height: 655px;
}

.text-product2 p{
    width: 255px;
    height: 78px;
    padding-top: 540px;
    padding-left: 10px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #333333;
}

.product-col6 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-left: 50px;
}

.product-col6 .the6 {
    width: 318px;
    margin-left: 205px;
}

.product-col6 p{
    width: 202px;
    height: 78px;
    padding-top: 540px;
    padding-left: 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    position: absolute;
    color: #333333;
}


.final-col3 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    margin: auto;
    padding-top: 100px;
}

.product-col7 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.product-col7 .the7 {
    width: 318px;
    height: 655px;
    margin-left: 420px;
}

.product-col7 p {
    width: 257px;
    height: 78px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    padding-top: 30px;
    margin-left : 10px;
    color: #333333;
}


.product-col8 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.product-col8 .the8 {
    width: 318px;
    height: 655px;
    margin-left: 230px;
}

.product-col7 span {
    width: 255px;
    height: 78px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: right;
    padding-top: 465px;
    margin-left: 230px;
    text-align: right;
    position: absolute;
    color: #333333;
}

/* ========================= */
/* 2560px Responsive */
/* ========================= */
@media (max-width: 2560px) {

    .final-product {
        margin: auto;
    }
}


/* ========================= */
/* 1440px Responsive */
/* ========================= */
@media (max-width: 1440px) {

    .final-product {
        width: 100%;
        height: auto;
        padding: 0 60px;
        box-sizing: border-box;
    }

    .final1 h1 {
        width: auto;
        padding-left: 60px;
        padding-top: 90px;
        font-size: 32px;
    }

    /* -------- First Grid -------- */
    .final-col1 {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        justify-items: center;
    }

    .final-col1 .the1 {
        margin-left: 0;
        padding-top: 100px;
        width: 318px;
    }

    .final-col1 .the3 {
        margin-left: 120px;
        padding-top: 100px;
        width: 318px;
    }

    .product-col2 {
        grid-template-columns: 1fr 1fr;
        padding-left: 0;
    }

    .product-col2 p {
        width: 225%;
        padding-top: 174px;
        padding-left: 9px;
        position: static;
    }

    .product-col2 span {
        padding-top: 440px;
        text-align: right;
        width: 16%;
    }

    /* -------- Second Section -------- */
    .final-col2 {
        padding-top: 120px;
        gap: 60px;
    }

    .product-col4 .the4 {
        margin-left: 200px;
        height: auto;
    }

    .product-col5 {
        grid-template-columns: repeat(3, 1fr);
        padding-left: 0;
    }

    .text-product2 p {
        position: static;
        padding-top: 20px;
        padding-left: 0;
    }

    .product-col6 {
        padding-left: 0;
        gap: 30px;
    }

    .product-col6 .the6 {
        margin-left: 0;
        width: 280px;
    }

    .product-col6 p {
        position: static;
        padding-top: 20px;
        padding-left: 0;
        display: none;
    }

    /* -------- Third Section -------- */
    .final-col3 {
        padding-top: 80px;
        gap: 60px;
    }

    .product-col7,
    .product-col8 {
        grid-template-columns: 1fr 1fr;
    }

    .product-col7 .the7,
    .product-col8 .the8 {
        margin-left: 0;
        width: 280px;
        height: auto;
    }

    .product-col7 span {
        margin-left: 100px;
        padding-top: 385px;
        text-align: left;
    }
}

/* ========================= */
/* 1024px Responsive */
/* ========================= */
@media (max-width: 1024px) {

    .final-product {
        width: 100%;
        height: auto;
        padding: 60px 40px;
        box-sizing: border-box;
    }

    .final1 h1 {
        width: 100%;
        padding: 60px 0 0 0;
        text-align: center;
        font-size: 30px;
    }

    /* 3 columns → 2 columns */
    .final-col1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .final-col1 .the1 {
        width: 70%;
        margin-left: 0;
        padding-top: 80px;
    }

    .final-col1 .the3 {
        width: 70%;
        margin-left: 313px;
        padding-top: 80px;
    }

    .product-col2 {
        grid-template-columns: 1fr;
        padding-left: 0;
        gap: 20px;
    }

    .product-col2 .the2 {
        width: 70%;
        padding-top: 80px;
    }

    .product-col2 p {
        position: static; 
        width: 100%;
        height: auto;
        padding: 20px 0 0 0;
        text-align: center;
    }

    .product-col2 span  {
        position: static; 
        width: 100%;
        height: auto;
        padding: 20px 0 0 0;
        text-align: center;
    }
    

    .final-col2 {
        grid-template-columns: 1fr;
        padding-top: 100px;
        gap: 40px;
    }

    .product-col4 {
        width: 100%;
        text-align: center;
    }

    .product-col4 .the4 {
        width: 60%;
        height: auto;
        margin: 0 auto;
    }

    .product-col5 {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 0;
        gap: 30px;
    }

    .product-col5 .the5 {
        width: 100%;
        height: auto;
    }

    .text-product2 p {
        position: static;
        width: 100%;
        height: auto;
        padding-top: 15px;
        text-align: center;
    }

    .product-col6 {
        grid-template-columns: 1fr;
        padding-left: 0;
        gap: 30px;
    }

    .product-col6 .the6 {
        width: 33%;
        margin-left: 310px;
    }

    .product-col6 p {
        position: static;
        width: 100%;
        height: auto;
        padding-top: 15px;
        text-align: center;
    }

    .final-col3 {
        padding-top: 80px;
        gap: 40px;
    }

    .product-col7,
    .product-col8 {
        grid-template-columns: 1fr;
    }

    .product-col7 .the7,
    .product-col8 .the8 {
        width: 85%;
        height: auto;
        margin-left: 0;
    }

    .product-col7 p,
    .product-col7 span {
        position: static;
        width: 100%;
        height: auto;
        padding-top: 15px;
        margin-left: 0;
        text-align: center;
    }
}

/* ========================= */
/* 768px Responsive */
/* ========================= */
@media (max-width: 768px) {

    .final-product {
        width: 100%;
        height: auto;
        padding: 60px 20px;
        box-sizing: border-box;
    }

    .final1 h1 {
        width: 100%;
        height: auto;
        padding: 0 0 40px 0;
        font-size: 28px;
        text-align: center;
    }

    /* 3 columns → 2 columns */
    .final-col1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .final-col1 .the1,
    .final-col1 .the3 {
        width: 100%;
        margin-left: 0;
        padding-top: 0;
    }

    .product-col2 {
        grid-template-columns: 1fr;
        padding-left: 0;
        gap: 20px;
    }

    .product-col2 .the2 {
        width: 80%;
        padding-top: 0;
        margin-left: 35px;
    }

    .product-col2 p,
    .product-col2 span {
        position: static;
        width: 100%;
        height: auto;
        padding: 10px 0;
        text-align: left;
    }

    .final-col2 {
        grid-template-columns: 1fr;
        padding-top: 80px;
        gap: 40px;
    }

    .product-col4 {
        width: 100%;
        text-align: center;
    }

    .product-col4 .the4 {
        width: 60%;
        height: auto;
        margin-left: 0;
    }

    .product-col5 {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 0;
        gap: 20px;
    }

    .product-col5 .the5 {
        width: 100%;
        height: auto;
    }

    .final-col1 .the3 {
        width: 70%;
        margin-left: 205px;
        padding-top: 15px;
    }

    .text-product2 p {
        position: static;
        width: 100%;
        height: auto;
        padding: 10px 0;
    }

    .product-col6 {
        grid-template-columns: 1fr;
        padding-left: 0;
        gap: 20px;
    }

    .product-col6 .the6 {
        width: 50%;
        margin: auto;
    }

    .img-product3 {
        margin: auto;
        margin-left: 210px;
    }

    .product-col6 p {
        position: static;
        width: 100%;
        height: auto;
        padding: 10px 0;
    }

    .final-col3 {
        padding-top: 60px;
        gap: 40px;
    }

    .product-col7,
    .product-col8 {
        grid-template-columns: 1fr;
    }

    .product-col7 .the7,
    .product-col8 .the8 {
        width: 85%;
        height: auto;
        margin-left: 0;
    }

    .product-col7 p,
    .product-col7 span {
        position: static;
        width: 100%;
        height: auto;
        padding: 10px 0;
        margin-left: 0;
        text-align: left;
    }

}


/* ========================= */
/* 425px Responsive */
/* ========================= */

@media (max-width: 425px) {

    .final-product {
        width: 100%;
        height: auto;
        padding: 40px 20px;
        box-sizing: border-box;
    }

    .final1 h1 {
        width: 100%;
        height: auto;
        padding: 40px 0;
        font-size: 24px;
        text-align: center;
    }

    /* All grid sections → 1 column */
    .final-col1,
    .final-col2,
    .final-col3,
    .product-col2,
    .product-col5,
    .product-col6,
    .product-col7,
    .product-col8 {
        grid-template-columns: 1fr;
        padding-left: 0;
    }

    /* Remove big margins */
    .final-col1 .the1,
    .final-col1 .the3,
    .product-col6 .the6,
    .product-col7 .the7,
    .product-col8 .the8 {
        margin-left: 35px;
        width: 80%;
        height: auto;
        padding-top: 12px;
    }

    .img-product3 {
        margin: auto;
    }

    .product-col4 .the4 {
        width: 80%;
        height: auto;
        margin-left: 35px;
    }

    .product-col5 .the5 {
        width: 80%;
        height: auto;
        margin-left: 35px;
    }

    /* Fix text */
    .product-col2 p,
    .product-col2 span,
    .text-product2 p,
    .product-col6 p,
    .product-col7 p,
    .product-col7 span {
        width: 100%;
        height: auto;
        padding: 20px 0 0 0;
        margin: 0;
        position: static; 
        text-align: center;
    }

}

/* ========================= */
/* 375px Responsive */
/* ========================= */
@media (max-width: 375px) {

    .final-product {
        width: 100%;
        height: auto;
        padding: 40px 20px;
        box-sizing: border-box;
    }

    .final1 h1 {
        width: 100%;
        height: auto;
        padding: 0;
        text-align: center;
        font-size: 24px;
        line-height: 1.3;
    }

    /* Make all grid sections single column */
    .final-col1,
    .final-col2,
    .final-col3,
    .product-col2,
    .product-col5,
    .product-col6,
    .product-col7,
    .product-col8 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
        margin: 0;
    }

    .img-product3 {
        margin: auto;
    }

    /* Remove fixed widths */
    .final-col1 .the1,
    .final-col1 .the3,
    .product-col2 .the2,
    .product-col4 .the4,
    .product-col5 .the5,
    .product-col6 .the6,
    .product-col7 .the7,
    .product-col8 .the8 {
        width: 75%;
        height: auto;
        margin-left: 35px;
    }

    /* Fix all paragraphs */
    .product-col2 p,
    .product-col2 span,
    .text-product2 p,
    .product-col6 p,
    .product-col7 p,
    .product-col7 span {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        font-size: 14px;
        text-align: center;
        position: static;   /* Remove absolute */
    }

}

/* ========================= */
/* 320px Responsive */
/* ========================= */

@media (max-width: 320px) {

    .final-product {
        width: 100%;
        height: auto;
        padding: 40px 20px;
        box-sizing: border-box;
    }

    .final1 h1 {
        width: 100%;
        height: auto;
        padding: 0;
        font-size: 22px;
        line-height: 1.3;
        text-align: center;
    }

    /* Make ALL grid sections single column */
    .final-col1,
    .final-col2,
    .final-col3,
    .product-col2,
    .product-col5,
    .product-col6,
    .product-col7,
    .product-col8 {
        grid-template-columns: 1fr;
        padding-left: 0;
        margin: 0;
        gap: 30px;
    }

    /* Remove crazy margins */
    .final-col1 .the1,
    .final-col1 .the3,
    .product-col4 .the4,
    .product-col7 .the7,
    .product-col8 .the8 {
        width: 75%;
        height: auto;
        margin-left: 35px;
    }

    /* Fix product images */
    .product-col5 .the5 {
        width: 75%;
        height: auto;
    }

    
    .product-col6 .the6 {
        width: 75%;
        height: auto;
        margin-left: 35px;
    }

    .img-product3 {
        margin: auto;
    }

    /* Fix all text */
    .product-col2 p,
    .product-col2 span,
    .text-product2 p,
    .product-col6 p,
    .product-col7 span {
        position: static;
        width: 100%;
        height: auto;
        padding: 10px 0 0 0;
        text-align: left;
        font-size: 14px;
    }

    .product-col7 p {
        margin-left: 0;
        padding-top: 10px;
    }

}









/* ========================================
   Result & Impact
   ======================================== */ 

.Result {
    width: 1920px;
    height: 1744px;
    background-color: #FFFFFF;
    padding: 120px 150px 0 150px;
}

.Result1 h1{
    width: 317px;
    height: 47px;
    top: 140px;
    left: 200px;
    font-family: JUST Sans;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    text-align: center;
    text-transform: uppercase;
    color: #262626;
}

.Result-Impact {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.Result-col p{
    width: 617px;
    height: 124px;
    padding-top: 400px;
    left: 200px;
    font-family: JUST Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 22px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #1A1A1A;
}

.card {
  width: 660px;
  background: #F8F8F8;
  padding: 25px;
  border-radius: 6px;
  margin-top: 525px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.icon-card1 {
  background: #fff;
  padding: 8px;
  border-radius: 50%;
  font-size: 18px;
}

.card-header h2 {
    margin: 0;
    font-family: JUST Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 26px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #1A1A1A; 
}

.chart {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.chart span {
    width: 213px;
    height: 119px;
    font-family: JUST Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 30px;
    line-height: 140%;
    letter-spacing: 0%;
    padding-top: 175px;
    text-align: center;
    color: #333333;
}

.chart h1 {
    width: 213px;
    font-weight: 500;
    font-family: JUST Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    text-align: center;
    color: #333333;
}

.Result-col1 p{
    width: 588px;
    height: 124px;
    padding-top: 85px;
    font-family: JUST Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 22px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #1A1A1A;
}

.card1 {
  width: 560px;
  background: #F8F8F8;
  padding: 25px;
  border-radius: 6px;
  margin-top: 445px;
}

.card-header1 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.icon-card {
  background: #fff;
  padding: 8px;
  border-radius: 50%;
  font-size: 18px;
}

.card-header1 h2 {
    margin: 0;
    font-family: JUST Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 26px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #1A1A1A; 
}

.rating-line {
    width: 515px;
    height: 32px;
    display: flex;
    align-items: center;
    gap: 110px;
    padding-top: 106px;
}

.item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chart-img {
    width: 425px;
    height: 475px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.dot.purple span{
    width: 32px;
    height: 32px;
}

.chart-section img {
    width: 476px;
    padding-top: 55px;
}

.purple {
    background-color: #6a1b9a;
}

.grey {
    background-color: #d9d9d9;
}

.red {
    background-color: #ff4d4d;
}

.text {
    font-family: JUST Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #333;
}

/* ========================= */
/* 2560px Responsive */
/* ========================= */
@media (max-width: 2560px) {

    .Result {
        margin: auto;
    }
}

/* ========================= */
/* 1440px Responsive */
/* ========================= */
/* Responsive for 1440px screens */
@media (max-width: 1440px) {
    .Result {
        width: 100%;
        height: auto;
        padding: 100px 80px;
    }

    .Result1 h1 {
        margin: auto;
        font-size: 32px;
    }

    .Result-Impact {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .Result-col p{
        width: 100%;
        max-width: 550px;
        padding-top: 230px;
        font-size: 20px;
        line-height: 1.4;
    }

    .Result-col1 p {
        width: 100%;
        max-width: 550px;
        padding-top: 80px;
        font-size: 20px;
        line-height: 1.4;
    }

    .card {
        width: 500px;
        margin-top: 400px;
        padding: 20px;
    }

    .card1 {
        width: 480px;
        margin-top: 350px;
        padding: 20px;
    }

    .chart {
        grid-template-columns: 1fr ;
        gap: 20px;
    }

    .chart span {
        width: 180px;
        font-size: 18px;
        padding-top: 30px;
        margin: auto;
    }

    .chart h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .rating-line {
        width: 450px;
        gap: 80px;
        padding-top: 90px;
    }

    .chart-img {
        width: 380px;
        height: auto;
        margin: auto;
    }

    .chart-section img {
        width: 420px;
        padding-top: 45px;
    }

    .dot.purple span {
        width: 28px;
        height: 28px;
    }

    .text {
        font-size: 13px;
    }
}



/* ========================= */
/* 1024px Responsive */
/* ========================= */
@media screen and (max-width: 1024px) {

  .Result {
    width: 100%;
    padding: 80px 50px;
    height: auto;
  }

  .Result1 h1 {
    width: 100%;
    font-size: 28px;
    text-align: center;
    left: 0;
    top: 0;
  }

  .Result-Impact {
    display: block; 
    gap: 40px;
  }

  .Result-col p,
  .Result-col1 p {
    width: 100%;
    height: auto;
    padding-top: 20px;
    font-size: 20px;
    text-align: center;
    margin-bottom: 30px;
  }

  .card,
  .card1 {
    width: 100%;
    margin-top: 30px;
    padding: 20px;
    margin: auto;
    padding-bottom: 20px;
  }

  .card-header,
  .card-header1 {
    gap: 8px;
    margin-bottom: 20px;
  }

  .card-header h2,
  .card-header1 h2 {
    font-size: 22px;
  }

  .chart {
    display: block;
    gap: 30px;
  }

  .chart span,
  .chart h1 {
    width: 100%;
    font-size: 18px;
    text-align: center;
    padding-top: 10px;
  }

  .rating-line {
    gap: 100px;
    padding-top: 50px;
    margin: auto;
  }

  .chart-img,
  .chart-section img {
    width: 100%;
    height: auto;
  }

  .dot,
  .dot.purple span {
    width: 12px;
    height: 12px;
  }

  .item {
    gap: 5px;
  }

  .text {
    font-size: 12px;
  }
}

/* ========================= */
/* 768px Responsive (Tablet) */
/* ========================= */
@media screen and (max-width: 768px) {

  .Result {
      width: 100%;
      height: auto;
      padding: 60px 20px;
  }

  .Result1 h1 {
      width: 100%;
      font-size: 28px;
      line-height: 1.2;
      text-align: center;
      top: 100px;
      left: 0;
  }

  .Result-Impact {
      display: block;
  }

  .Result-col p,
  .Result-col1 p {
      width: 100%;
      padding-top: 20px;
      font-size: 18px;
      line-height: 1.5;
      text-align: center;
      margin-bottom: 30px;
  }

  .card,
  .card1 {
      width: 100%;
      padding: 20px;
      margin: auto;
  }

  .card-header,
  .card-header1 {
      gap: 8px;
      margin-bottom: 15px;
  }

  .card-header h2,
  .card-header1 h2 {
      font-size: 22px;
  }

  .chart {
      display: block;
  }

  .chart span {
      width: 100%;
      font-size: 16px;
      padding-top: 50px;
      text-align: center;
  }

  .chart h1 {
      font-size: 24px;
      line-height: 1.3;
      text-align: center;
  }

  .rating-line {
      gap: 100px;
      padding-top: 30px;
      margin: auto;
  }

  .item {
      gap: 5px;
  }

  .chart-img,
  .chart-section img {
      width: 100%;
      height: auto;
      padding-top: 20px;
  }

  .dot {
      width: 12px;
      height: 12px;
  }

  .dot.purple span {
      width: 28px;
      height: 28px;
  }

  .text {
      font-size: 12px;
  }
}


/* ========================= */
/* 425px Responsive */
/* ========================= */
@media screen and (max-width: 425px) {
  
  .Result {
      width: 100%;
      padding: 50px 20px;
      height: auto;
  }

  .Result1 h1 {
      width: 100%;
      font-size: 24px;
      line-height: 1.2;
      text-align: center;
      margin-top: 20px;
      left: 0;
  }

  .Result-Impact {
      display: block;
  }

  .Result-col p,
  .Result-col1 p {
      width: 100%;
      padding-top: 20px;
      font-size: 18px;
      line-height: 1.5;
  }

  .card,
  .card1 {
      width: 100%;
      margin-top: 20px;
      padding: 15px;
  }

  .card-header,
  .card-header1 {
      gap: 8px;
      margin-bottom: 15px;
  }

  .card-header h2,
  .card-header1 h2 {
      font-size: 20px;
  }

  .chart {
      display: block;
  }

  .chart span,
  .chart h1 {
      width: 100%;
      font-size: 16px;
      text-align: center;
      padding-top: 10px;
  }

  .rating-line {
      gap: 60px;
      padding-top: 20px;
      justify-content: flex-start;
  }

  .item {
      gap: 5px;
  }

  .chart-img,
  .chart-section img {
      width: 100%;
      height: auto;
      padding-top: 20px;
  }

  .dot {
      width: 10px;
      height: 10px;
  }

  .dot.purple span {
      width: 24px;
      height: 24px;
  }

  .text {
      font-size: 12px;
  }
}



/* ========================= */
/* 375px Responsive */
/* ========================= */
@media screen and (max-width: 375px) {
  
  .Result {
    width: 100%;
    height: auto;
    padding: 60px 15px;
  }

  .Result1 h1 {
    width: 100%;
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
    left: 0;
    height: auto;
  }

  .Result-Impact {
    display: block; /* stack columns vertically */
  }

  .Result-col p,
  .Result-col1 p {
    width: 100%;
    font-size: 16px;
    padding-top: 20px;
    height: auto;
  }

  .card,
  .card1 {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
  }

  .card-header,
  .card-header1 {
    align-items: flex-start;
    gap: 5px;
  }

  .card-header h2,
  .card-header1 h2 {
    font-size: 20px;
  }

  .chart {
    display: block; /* stack charts vertically */
    gap: 15px;
  }

  .chart span {
    width: 100%;
    font-size: 14px;
    padding-top: 15px;
  }

  .chart h1 {
    width: 100%;
    font-size: 20px;
    line-height: 1.2;
  }

  .rating-line {
    gap: 40px;
    padding-top: 20px;
    width: 100%;
  }

  .item {
    gap: 5px;
  }

  .chart-img,
  .chart-section img {
    width: 100%;
    height: auto;
    padding-top: 15px;
  }

  .dot,
  .dot.purple span {
    width: 10px;
    height: 10px;
  }

  .text {
    font-size: 12px;
  }
}

/* ========================= */
/* 320px Responsive */
/* ========================= */
@media screen and (max-width: 320px) {
  
  .Result {
    width: 100%;
    height: auto;
    padding: 60px 15px;
  }

  .Result1 h1 {
    width: 100%;
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
    left: 0;
    height: auto;
  }

  .Result-Impact {
    display: block; /* stack columns vertically */
  }

  .Result-col p,
  .Result-col1 p {
    width: 100%;
    font-size: 16px;
    padding-top: 20px;
    height: auto;
  }

  .card,
  .card1 {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
  }

  .card-header,
  .card-header1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .card-header h2,
  .card-header1 h2 {
    font-size: 20px;
  }

  .chart {
    display: block; /* stack charts vertically */
    gap: 15px;
  }

  .chart span {
    width: 100%;
    font-size: 14px;
    padding-top: 15px;
  }

  .chart h1 {
    width: 100%;
    font-size: 20px;
    line-height: 1.2;
  }

  .rating-line {
    gap: 10px;
    padding-top: 20px;
    width: 100%;
  }

  .item {
    gap: 5px;
  }

  .chart-img,
  .chart-section img {
    width: 100%;
    height: auto;
    padding-top: 15px;
  }

  .dot,
  .dot.purple span {
    width: 10px;
    height: 10px;
  }

  .text {
    font-size: 12px;
  }
}









/* ========================================
   train SECTION
   ======================================== */
.guide {
    width: 1920px;
    height: 919px;
    padding: 160px 170px;
    background-color:#0D0D0D;
}

.guide-line{
    width: 1520px;
    height: 31px;
    display: flex;
    justify-content: space-between;
}

.guide-line p{
    font-family: Inter Display;
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFF;
}

.guide-tabs {
    width: 406px;
    height: 25px;
    gap: 30px;
}

.guide-tabs {
    font-family: Montserrat;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    gap: 20px;
    color: #E6E6E6;
}

.guide-tabs span {
    padding-left: 40px;
}

.guide1 {
    width: 1520px;
    height: 274px;
    gap: 106px;
}

.manrope {
    width: 1520px;
    height: 137px;
    padding-top: 125px;
    display: flex;
    justify-content: space-between;
}

.manrope h1 {
   font-family: Montserrat;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 100px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color:  #FFFFFF;
}

.manrope-3 {
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: right;
    text-transform: uppercase;
    color: #D9D9D9;
}

.manrope-3 h2,h3,h4 {
    width: 100%;
}

.guide-color {
    width: 1518px;
    height: 620px;
    padding-top: 40px;
}

.guide-color1 {
    width: 1518px;
    height: 300px;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
}

/*-----------------------------------color1---------------------------------*/
.color1 {
    width: 716px;
    height: 300px;
    background-color: #67459A;
    border-radius: 20px;
    padding: 20px;
    position: relative; 
}

.color1:hover {
    transform: translateY(-6px);
    transition: 0.3s;
}

.color1 p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color:  #FFFFFF;
}


.color1 span {
    position: absolute; 
    bottom: 20px;
    right: 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    color: #FFFFFF;
}


/*-----------------------------------color2---------------------------------*/
.color2 {
    width: 382px;
    height: 300px;
    background-color: #F0EDF2;
    border-radius: 20px;
    padding: 20px;
    position: relative; 
}

.color2:hover {
    transform: translateY(-6px);
    transition: 0.3s;
}

.color2 p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color:  #0D0D0D;
}


.color2 span {
    position: absolute; 
    bottom: 20px;
    right: 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    color: #0D0D0D;
}



/*-----------------------------------color3---------------------------------*/
.color3 {
    width: 382px;
    height: 300px;
    background-color: #EB503E;
    border-radius: 20px;
    padding: 20px;
    position: relative; 
}

.color3:hover {
    transform: translateY(-6px);
    transition: 0.3s;
}

.color3 p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color:  #FFFFFF;
}


.color3 span {
    position: absolute; 
    bottom: 20px;
    right: 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    color: #FFFFFF;
}

/* ========================= */
/* 2560px Responsive */
/* ========================= */
@media (max-width: 2560px) {

    .guide  {
        margin: auto;
    }
}

/* ========================= */
/* 1440px Responsive */
/* ========================= */
@media (max-width: 1440px) {
    .guide {
        width: 100%;
        height: auto;
        padding: 120px 100px; /* reduced padding */
    }

    .guide-line {
        width: 100%;
        max-width: 1200px;
        gap: 15px;
    }

    .guide-line p {
        font-size: 20px;
    }

    .guide-tabs {
        width: auto;
        font-size: 16px;
        gap: 15px;
    }

    .guide-tabs span {
        padding-left: 20px;
    }

    .guide1 {
        width: 100%;
        max-width: 1200px;
        gap: 50px;
    }

    .manrope {
        width: 100%;
        align-items: flex-start;
        padding-top: 80px;
        gap: 20px;
    }

    .manrope h1 {
        font-size: 70px; /* reduce big heading */
        line-height: 1.1;
    }

    .manrope-3 {
        font-size: 16px;
        text-align: left;
    }

    .guide-color {
        width: 100%;
        max-width: 1200px;
        height: auto;
        padding-top: 30px;
    }

    .guide-color1 {
        width: 110%;
        height: 300px;
    }

    .guide-color1 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 15px;
    }

    .color1 {
        width: 80%;
        height: auto;
        padding: 15px;
    }

    .color2, .color3 {
        width: 80%;
        height: auto;
        padding: 15px;
    }

    .color1 p, .color2 p, .color3 p {
        font-size: 18px;
    }

    .color1 span, .color2 span, .color3 span {
        font-size: 14px;
    }
}

/* ========================= */
/* 1024px Responsive */
/* ========================= */
@media (max-width: 1024px) {
    .guide {
        width: 100%;
        padding: 100px 50px;
        height: auto;
    }

    .guide-line {
        width: 100%;
        gap: 10px;
    }

    .guide-line p {
        width: 200px;
        font-size: 20px;
    }

    .guide-tabs {
        width: 100%;
        font-size: 16px;
        gap: 15px;
        text-align: right;
    }

    .guide-tabs span {
        padding-left: 20px;
    }

    .guide1,
    .manrope,
    .guide-color {
        width: 100%;
        gap: 40px;
        flex-wrap: wrap;
    }

    .manrope h1 {
        font-size: 60px;
        text-align: center;
        padding-top: 20px;
    }

    .manrope-3 {
        font-size: 16px;
        text-align: right;
        padding-top: 10px;
    }

    .guide-color1 {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 15px;
        width: 100%;
    }

    .color1,
    .color2,
    .color3 {
        width: 95%;
        height: auto;
        padding: 15px;
    }

    .color1 p,
    .color2 p,
    .color3 p {
        font-size: 18px;
    }

    .color1 span,
    .color2 span,
    .color3 span {
        font-size: 14px;
        bottom: 15px;
        right: 15px;
    }
}

/* ========================= */
/* 768px Responsive */
/* ========================= */
@media (max-width: 768px) {
    .guide {
        width: 100%;
        height: auto;
        padding: 80px 20px;
    }

    .guide-line {
        width: 100%;
        align-items: flex-start;
        gap: 10px;
    }

    .guide-line p {
        font-size: 18px;
    }

    .guide-tabs {
        width: 100%;
        text-align: right;
        gap: 15px;
        font-size: 16px;
    }

    .guide-tabs span {
        padding-left: 0;
    }

    .guide1,
    .manrope,
    .guide-color {
        width: 100%;
        display: flex;
        gap: 20px;
        padding-top: 40px;
    }

    .guide-color1 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-top: 65px;
    }

    .manrope h1 {
        font-size: 48px;
        text-align: center;
        padding-top: 0;
    }

    .manrope-3 {
        font-size: 16px;
    }

    .guide-color1 {
        grid-template-columns: 1fr;
    }

    .color1,
    .color2,
    .color3 {
        width: 100%;
        height: auto;
        padding: 15px;
    }

    .color1 p,
    .color2 p,
    .color3 p {
        font-size: 16px;
    }

    .color1 span,
    .color2 span,
    .color3 span {
        font-size: 14px;
    }
}

/* ========================= */
/* 425px Responsive */
/* ========================= */
@media (max-width: 425px) {
    .guide {
        width: 100%;
        padding: 80px 20px;
        height: auto;
    }

    .guide-line {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .guide-line p {
        font-size: 16px;
    }

    .guide-tabs {
        width: 100%;
        font-size: 14px;
        gap: 10px;
        justify-content: center;
    }

    .guide-tabs span {
        padding-left: 20px;
    }

    .guide1,
    .manrope,
    .guide-color,
    .guide-color1 {
        width: 100%;
        height: auto;
        gap: 15px;
        padding-top: 40px;
        flex-direction: column;
    }

    .manrope h1 {
        font-size: 36px;
        text-align: center;
        padding-top: 10px;
    }

    .manrope-3 {
        font-size: 14px;
        padding-left: 89px;
        padding-top: 5px;
    }

    /* Color cards stack vertically */
    .guide-color1 {
        grid-template-columns: 1fr; 
        gap: 15px;
    }

    .color1,
    .color2,
    .color3 {
        width: 100%;
        height: auto;
        padding: 15px;
    }

    .color1 p,
    .color2 p,
    .color3 p {
        font-size: 16px;
    }

    .color1 span,
    .color2 span,
    .color3 span {
        font-size: 14px;
        bottom: 15px;
        right: 15px;
    }
}

/* ========================= */
/* 375px Responsive */
/* ========================= */
@media (max-width: 375px) {
    .guide {
        width: 100%;
        padding: 80px 20px;
        height: auto;
    }

    .guide-line {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .guide-line p {
        font-size: 16px;
    }

    .guide-tabs {
        width: 100%;
        font-size: 14px;
        gap: 10px;
        justify-content: center;
    }

    .guide-tabs span {
        padding-left: 20px;
    }

    .guide1,
    .manrope,
    .guide-color,
    .guide-color1 {
        width: 100%;
        height: auto;
        gap: 15px;
        padding-top: 40px;
        flex-direction: column;
    }

    .manrope h1 {
        font-size: 36px;
        text-align: center;
        padding-top: 10px;
    }

    .manrope-3 {
        font-size: 14px;
        padding-left: 89px;
        padding-top: 5px;
    }

    /* Color cards stack vertically */
    .guide-color1 {
        grid-template-columns: 1fr; 
        gap: 15px;
    }

    .color1,
    .color2,
    .color3 {
        width: 100%;
        height: auto;
        padding: 15px;
    }

    .color1 p,
    .color2 p,
    .color3 p {
        font-size: 16px;
    }

    .color1 span,
    .color2 span,
    .color3 span {
        font-size: 14px;
        bottom: 15px;
        right: 15px;
    }
}

/* ========================= */
/* 320px Responsive */
/* ========================= */
@media (max-width: 425px) {
    .guide {
        width: 100%;
        padding: 80px 20px;
        height: auto;
    }

    .guide-line {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .guide-line p {
        font-size: 16px;
    }

    .guide-tabs {
        width: 100%;
        font-size: 14px;
        gap: 10px;
        justify-content: center;
    }

    .guide-tabs span {
        padding-left: 20px;
    }

    .guide1,
    .manrope,
    .guide-color,
    .guide-color1 {
        width: 100%;
        height: auto;
        gap: 15px;
        padding-top: 40px;
        flex-direction: column;
    }

    .manrope h1 {
        font-size: 36px;
        text-align: center;
        padding-top: 10px;
    }

    .manrope-3 {
        width: 100%;
        font-size: 14px;
        padding-left: 0;
    }

    .manrope-3 h2{
        font-size: 14px;
        width: 100%;
    }

    .manrope-3 h3 {
        font-size: 12px;
    }

    /* Color cards stack vertically */
    .guide-color1 {
        grid-template-columns: 1fr; 
        gap: 15px;
        padding-top: 18px;
    }

    .color1,
    .color2,
    .color3 {
        width: 100%;
        height: auto;
        padding: 15px;
    }

    .color1 p,
    .color2 p,
    .color3 p {
        font-size: 16px;
    }

    .color1 span,
    .color2 span,
    .color3 span {
        font-size: 14px;
        bottom: 15px;
        right: 15px;
    }
}













/* ========================================
   ai SECTION
   ======================================== */

/* Main Section */
.ai-section{
    position:relative;
    width:1400px;
    height: 755px;
    margin: auto;
    padding-top: 160px;
}

/* Laptop */
.laptop{
    position:absolute;
    left:-80px;
    top:-40px;
    z-index:2;
}

.laptop img{
    width: 889px;
    height: 755px;
    object-fit: cover;
    margin-top: 115px;
    margin-left: -135px;
}

/* Right Card */
.content-card{
    width: 1043px;
    height: 535px;
    margin-left:250px;
    background:url("../Assets/trainer/simon31.webp") no-repeat center/cover;
    border-radius:15px;
    padding: 68px 60px 60px 470px;
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* Text */
.content-card h1{
    font-family: Inter Display;
    font-weight: 700;
    font-style: Bold;
    font-size: 36px;
    line-height: 140%; 
    letter-spacing: 0%;
    text-transform: uppercase;
    margin-bottom:15px;
    color: #FFFFFF;
}

.content-card p{
    font-family: JUST Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin-bottom:25px;
}

/* Buttons */
.buttons{
    display:flex;
    gap:15px;
}

.btn-outline{
    font-family: JUST Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 135%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: #1C1C1C;
    padding:10px 20px;
    border:1px solid #1C1C1C;
    background:transparent;
    border-radius:5px;
    cursor:pointer;
}

.btn-outline:hover {
    transform: translateY(-4px);
    transition: 0.3s;
    background-color: #FFFFFF;
    color: #000;
}

.btn-white{
    font-family: JUST Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 135%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: #1C1C1C;
    padding:10px 20px;
    border:none;
    background:#FFFFFF;
    border-radius:5px;
    cursor:pointer;
}

.btn-white:hover {
    transform: translateY(-4px);
    transition: 0.3s;
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFF;
}

/* ========================= */
/* 1440px Responsive */
/* ========================= */
@media (max-width: 1440px) {
    .ai-section {
        width: 100%;
        max-width: 1200px;
        height: auto;
        padding-top: 120px;
        margin: 0 auto;
        position: relative;
    }

    /* Laptop */
    .laptop {
        left: -50px;
        top: -20px;
    }

    .laptop img {
        width: 840px;
        height: auto;
        margin-top: 36px;
        margin-left: -115px;
    }

    /* Right Card */
    .content-card {
        width: 90%;
        max-width: 900px;
        height: 370px;
        margin-left: 200px;
        padding: 50px 40px 40px 350px;
    }

    /* Text */
    .content-card h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .content-card p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* Buttons */
    .buttons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn-outline,
    .btn-white {
        padding: 8px 18px;
        font-size: 14px;
    }
}

/* ========================= */
/* 1024px Responsive */
/* ========================= */
@media (max-width: 1024px) {
    .ai-section {
        width: 95%;
        height: auto;
        padding-top: 100px;
    }

    /* Laptop Image */
    .laptop {
        left: -40px;
        top: -20px;
    }

    .laptop img {
        width: 650px;
        height: auto;
        margin-top: 23px;
        margin-left: -130px;
    }

    /* Content Card */
    .content-card {
        width: 85%;
        height: auto;
        margin-left: 70px;
        padding: 50px 40px 40px 352px;
        flex-direction: column;
        justify-content: center;
        border-radius: 15px;
    }

    .content-card h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .content-card p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* Buttons */
    .buttons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn-outline, .btn-white {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* ========================= */
/* 768px Responsive */
/* ========================= */
@media (max-width: 768px) {
    .ai-section {
        width: 100%;
        height: auto;
        padding: 80px 20px;
        position: relative;
    }

    /* Laptop Image */
    .laptop {
        position: relative;
        left: 0;
        top: 0;
        margin: 0 auto 20px auto;
        z-index: 1;
        display: flex;
        justify-content: center;
    }

    .laptop img {
        width: 100%;
        max-width: 600px;
        height: auto;
        margin: 0;
        object-fit: contain;
    }

    /* Content Card */
    .content-card {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
        padding: 40px 30px;
        border-radius: 15px;
        flex-direction: column;
        text-align: center;
        background-size: cover;
    }

    /* Text */
    .content-card h1 {
        font-size: 24px;
    }

    .content-card p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* Buttons */
    .buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn-outline,
    .btn-white {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* ========================= */
/* 425px Responsive */
/* ========================= */
@media (max-width: 425px) {
    .ai-section {
        width: 100%;
        height: auto;
        padding-top: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Laptop image */
    .laptop {
        position: relative;
        left: 0;
        top: 0;
        margin: 0 auto 20px auto;
        width: 100%;
        text-align: center;
        z-index: 1;
    }

    .laptop img {
        width: 100%;
        height: auto;
        margin: 0;
        object-fit: cover;
    }

    /* Content card */
    .content-card {
        position: relative;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 20px;
        border-radius: 15px;
        background: url("../Assets/trainer/simon31.webp") no-repeat center/cover;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: white;
    }

    /* Text inside content card */
    .content-card h1 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .content-card p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    /* Buttons */
    .buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-outline,
    .btn-white {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        font-size: 14px;
    }
}

/* ========================= */
/* 375px Responsive */
/* ========================= */
@media (max-width: 375px) {
    .ai-section {
        width: 100%;
        height: auto;
        padding-top: 80px;
        position: relative;
    }

    /* Laptop */
    .laptop {
        position: relative;
        left: 0;
        top: 0;
        margin: 0 auto;
        width: 100%;
        text-align: center;
    }

    .laptop img {
        width: 100%;
        height: auto;
        margin: 0;
        object-fit: contain;
    }

    /* Content Card */
    .content-card {
        width: 100%;
        height: auto;
        padding: 20px;
        background: url("../Assets/trainer/simon31.webp") no-repeat center/cover;
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .content-card h1 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .content-card p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    /* Buttons */
    .buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-outline,
    .btn-white {
        width: 100%;
        text-align: center;
        padding: 10px;
        font-size: 14px;
    }
}


/* ========================= */
/* 320px Responsive */
/* ========================= */
@media (max-width: 320px) {
    .ai-section {
        width: 90%;
        height: auto;
        padding-top: 80px;
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Laptop Image */
    .laptop {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        margin: 0 auto 20px auto;
        z-index: 1;
    }

    .laptop img {
        width: 100%;
        height: auto;
        margin: 0;
        object-fit: cover;
    }

    /* Content Card */
    .content-card {
        position: relative;
        width: 100%;
        height: auto;
        margin-left: 0;
        padding: 20px;
        background-position: center;
        background-size: cover;
        border-radius: 10px;
    }

    /* Text */
    .content-card h1 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .content-card p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    /* Buttons */
    .buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-outline, .btn-white {
        width: 100%;
        padding: 10px 0;
        text-align: center;
        font-size: 14px;
    }
}








/* ========================================
    other-work SECTION
   ========================================  */
.work-section{
    width: 1620px;
    height: 877px;
    padding-top: 160px;
    margin: 0 auto;
}

.work-section h2{
    width: 245px;
    height: 47px;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 36px;
    line-height: 1;
    text-transform: uppercase;
    color: #262626;
}

.work-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
padding-top: 60px;
}

/* CARD */
.work-card{
    width: 512px;
    height: 560px;
    gap: 18px;
    text-align:left;
}

/* IMAGE AREA */
.image-box{
    position:relative;
    width: 512px;
    height: 405px;
    background-image: url(../Assets/trainer/simon38.webp);
    border-radius:40px;
    overflow:hidden;
}

.image-box:hover img {
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

.image-box.blue{
    position:relative;
    width: 512px;
    height: 405px;
    background-image: url(../Assets/trainer/simon39.webp);
    border-radius:40px;
    overflow:hidden;
}

.image-box.purple{
    position:relative;
    width: 512px;
    height: 405px;
    background-image: url(../Assets/trainer/simon40.webp);
    border-radius:40px;
    overflow:hidden;
    background-color: #fff;
}

/* MOBILE IMAGES */
.mobile{
position:absolute;
bottom:-10px;
width:130px;
filter:drop-shadow(0px 8px 20px rgba(0,0,0,0.25));
}

/* FIRST PHONE */
.img1{
left:35%;
z-index:1;
}

/* SECOND PHONE */
.img2{
left:55%;
z-index:2;
}

.image-box .img1{
    width: 447px;
    height: 313px;
    left: 32px;
    position: absolute;
    top: 104px;
    border-radius: 10px;
    border: 4px solid #000;
}

.image-box .img2{
    width: 138px;
    height: 283px;
    position: absolute;
    left: 339px;
    top: 186px;
}

/* Second Mobile */
.image-box.blue .mobile-img4{
    width: 534px;
    height: 303px;
    position: absolute;
    left: -14px;
    top: 104px;
}

/* Second Mobile */
.image-box.purple .mobile-img6{
    width: 378px;
    height: 505px;
    position: absolute;
    left: 67px;
    top: 104px;
    border-radius: 10px;
    border: 8px solid #000;
}

/* TEXT */
.work-card h4{
  font-family: JUST Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    text-transform: uppercase;
  color: #4D4D4D;
  padding-top: 20px;
}

.work-card p{
  font-family: JUST Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0%;
    text-transform: capitalize;
  color: #262626;
  padding-top: 20px;
}

/* ===============================
   WORK SECTION - LARGE SCREEN (max-width:1440px)
================================ */

@media screen and (max-width:1440px){

  /* SECTION */
  .work-section {
    width: 100%;
    padding: 120px 35px;
    height: auto;
    margin: 0 auto;
  }

  /* HEADING */
  .work-section h2 {
    font-size: 32px;
    width: 100%;
    height: auto;
  }

  /* GRID */
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 50px;
  }

  /* CARD */
  .work-card {
    width: 100%;
    max-width: 460px;
    height: auto;
    gap: 15px;
    text-align: left;
  }

  .image-box{
    max-width: 440px;
  }

  .image-box .img1{
    width: 374px;
    height: 326px;
    left: 33px;
    top: 100px;
  }
  
  .image-box .img2{
    width: 144px;
    height: 320px;
    left: 259px;
    top: 146px;
  }

  .image-box.blue .mobile-img4 {
    width: 470px;
    height: 303px;
    position: absolute;
    left: -14px;
    top: 104px;
  }

  .image-box.purple .mobile-img6 {
    width: 353px;
    height: 505px;
    position: absolute;
    left: 44px;
    top: 104px;
    border-radius: 10px;
    border: 8px solid #000;
  }

  /* TEXT */
  .work-card h4 {
    font-size: 18px;
    padding-top: 15px;
  }

  .work-card p {
    font-size: 22px;
    padding-top: 15px;
  }
}

/* ===============================
   WORK SECTION - MEDIUM SCREEN (max-width:1200px)
================================ */

@media screen and (max-width:1200px){

  /* SECTION */
  .work-section {
    width: 95%;
    padding-top: 120px;
    margin: 0 auto;
  }

  .work-section h2 {
    font-size: 32px;
    width: 100%;
  }

  /* GRID */
  .work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-content: center;
    gap: 30px;
    padding-top: 50px;
  }

  /* CARD */
  .work-card {
    width: 100%;
    height: auto;
    text-align: left;
    gap: 15px;
  }

  /* IMAGE AREA */
  .image-box{
    width: 380px; 
    height: 280px;
    background-size: cover;
  }
  
 .image-box .img1{
    width: 315px;
    height: 270px;
    left: 33px;
    top: 77px;
  }
  
  .image-box .img2{
    width: 144px;
    height: 270px;
    left: 200px;
    top: 90px; 
  }

  .image-box.blue {
    width: 380px; 
    height: 280px;
    background-size: cover;
  }
  
  .image-box.blue .mobile-img4{
    width: 382px;
    height: 270px;
    left: -2px;
    top: 82px;
  }

  .image-box.purple  {
    width: 380px; 
    height: 280px;
    background-size: cover;
  }

  .image-box.purple .mobile-img6 {
     width: 305px;
    height: 270px;
    left: 37px;
    top: 70px; 
  }

  /* TEXT */
  .work-card h4 {
    font-size: 18px;
    padding-top: 15px;
  }

  .work-card p {
    font-size: 20px;
    padding-top: 15px;
  }

}

/* ===============================
   WORK SECTION - TABLET/MOBILE (max-width:768px)
================================ */

@media screen and (max-width:768px){

  /* MAIN SECTION */
  .work-section{
    width: 90%;
    padding-top: 80px;
    margin: 0 auto;
    min-height: auto;
  }

  .work-section h2{
    width: 100%;
    font-size: 28px;
    text-align: center;
  }

  /* GRID LAYOUT */
  .work-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 40px;
  }

  /* CARD */
  .work-card{
    width: 100%;
    height: auto;
    gap: 12px;
    text-align: center;
    padding-left: 133px;
  }

  /* IMAGE AREA */
  .image-box{
    width: 380px; 
    height: 280px;
    background-size: cover;
  }
  
 .image-box .img1{
    width: 329px;
    height: 270px;
    left: 28px;
    top: 72px;
  }
  
  .image-box .img2{
    width: 144px;
    height: 270px;
    left: 210px;
    top: 99px; 
  }

  .image-box.blue {
    width: 380px; 
    height: 280px;
    background-size: cover;
  }
  
  .image-box.blue .mobile-img4{
    width: 391px;
    height: 270px;
    left: -3px;
    top: 70px; 
  }

  .image-box.purple  {
    width: 380px; 
    height: 280px;
    background-size: cover;
  }

  .image-box.purple .mobile-img6 {
     width: 342px;
    height: 270px;
    left: 21px;
    top: 70px; 
  }

  /* TEXT */
  .work-card h4{
    font-size: 16px;
    padding-top: 15px;
  }

  .work-card p{
    font-size: 20px;
    padding-top: 15px;
  }

}

/* ===============================
   WORK SECTION - MOBILE (max-width:425px)
================================ */

@media screen and (max-width:425px){

  /* MAIN SECTION */
  .work-section{
    width: 100%;
    padding-top: 80px;
  }

  .work-section h2{
    width: 90%;
    font-size: 24px;
    text-align: center;
    margin: 0 auto;
    line-height: 1.2;
  }

  /* GRID STACKED */
  .work-grid{
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 40px;
  }

  /* CARD */
  .work-card{
    width: 90%;
    margin: 0 auto;
    height: auto;
    gap: 12px;
    text-align: center;
    padding: 0;
  }

  /* IMAGE AREA */
  .image-box{
    width: 380px; 
    height: 280px;
    background-size: cover;
    margin-left: -30px;
  }
  
 .image-box .img1{
    width: 316px;
    height: 270px;
    left: 32px;
    top: 74px;
  }
  
  .image-box .img2{
    width: 135px;
    height: 270px;
    left: 210px;
    top: 90px;
  }

  .image-box.blue {
    width: 380px; 
    height: 280px;
    background-size: cover;
  }
  
  .image-box.blue .mobile-img4{
    width: 401px;
    height: 270px;
    left: -5px;
    top: 75px;
  }

  .image-box.purple  {
    width: 380px; 
    height: 280px;
    background-size: cover;
  }

  .image-box.purple .mobile-img6 {
     width: 353px;
    height: 270px;
    left: 14px;
    top: 70px; 
  }

  /* TEXT */
  .work-card h4{
    font-size: 16px;
    padding-top: 12px;
  }

  .work-card p{
    font-size: 18px;
    padding-top: 12px;
  }

}

/* ===============================
   WORK SECTION - SMALL MOBILE (max-width:375px)
================================ */

@media screen and (max-width:375px) {

  /* SECTION */
  .work-section {
    width: 100%;
    padding-top: 80px;
    margin: 0 auto;
  }

  .work-section h2 {
    width: 100%;
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
  }

  /* GRID */
  .work-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 column */
    gap: 30px;
    padding-top: 40px;
  }

  /* CARD */
  .work-card {
    width: 90%;
    margin: auto;
    height: auto;
    gap: 12px;
    text-align: center;
    padding: 0;
  }

  .image-box{
    width: 340px; 
    height: 270px;
    background-size: cover;
  }
  
 .image-box .img1{
    width: 303px;
    height: 270px;
    left: 22px;
    top: 73px;
  }
  
  .image-box .img2{
    width: 128px;
    height: 270px;
    left: 196px;
    top: 86px; 
  }

  .image-box.blue {
    width: 340px; 
    height: 270px;
    background-size: cover;
  }
  
  .image-box.blue .mobile-img4{
    width: 360px;
    height: 270px;
    left: -10px;
    top: 71px; 
  }

  .image-box.purple  {
    width: 340px; 
    height: 270px;
    background-size: cover;
  }

  .image-box.purple .mobile-img6 {
     width: 320px;
    height: 270px;
    left: 11px;
    top: 60px; 
  }

  /* TEXT */
  .work-card h4 {
    font-size: 16px;
    padding-top: 10px;
  }

  .work-card p {
    font-size: 18px;
    padding-top: 10px;
  }

}

/* ===============================
   WORK SECTION - MOBILE 320px
================================ */
@media screen and (max-width: 320px) {

  .work-section {
    padding-top: 60px;
    padding-left: 10px;
    padding-right: 10px;
    background-size: cover;
    background-position: center;
  }

  /* Phones stack vertically */
  .work-phones {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }

  .work-phones img {
    max-width: 180px;  /* smaller phones */
    height: auto;
    transform: translateY(0);
  }

 .image-box{
    width: 280px; 
    height: 220px;
    margin-left: 10px;
    background-size: cover;
  }
  
 .image-box .img1{
    width: 248px;
    height: 270px;
    left: 20px;
    top: 62px; 
  }
  
  .image-box .img2{
    width: 115px;
    height: 270px;
    left: 152px;
    top: 85px; 
  }

  .image-box.blue {
    width: 280px; 
    height: 220px;
    margin-left: 10px;
    background-size: cover;
  }

  .image-box.blue .mobile-img4{
    width: 285px;
    height: 270px;
    left: -2px;
    top: 53px; 
  }

  .image-box.purple  {
    width: 280px; 
    height: 220px;
    background-size: cover;
  }

  .image-box.purple .mobile-img6 {
    width: 251px;
    height: 270px;
    left: 16px;
    top: 53px;
  }

  /* Text below phones */
  .work-section .work-text {
    margin-top: 20px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .work-section .work-text h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .work-section .work-text p {
    font-size: 18px;
    line-height: 1.4;
  }

  /* Optional: adjust overlay opacity if used */
  .work-overlay {
    background: rgba(0,0,0,0.1);
  }
}



